mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
MFH: fix #39583 (ftp_put() does not change transfer mode to ASCII)
This commit is contained in:
parent
724f500c92
commit
7f235792b3
2 changed files with 2 additions and 1 deletions
1
NEWS
1
NEWS
|
@ -44,6 +44,7 @@ PHP NEWS
|
|||
- Fixed bug #39613 (Possible segfault in imap initialization due to missing
|
||||
module dependency). (wharmby at uk dot ibm dot com, Tony)
|
||||
- Fixed bug #39602 (Invalid session.save_handler crashes PHP). (Dmitry)
|
||||
- Fixed bug #39583 (ftp_put() does not change transfer mode to ASCII). (Tony)
|
||||
- Fixed bug #39576 (array_walk() doesn't separate userdata zval). (Tony)
|
||||
- Fixed bug #39548 (ZMSG_LOG_SCRIPT_NAME not routed to OutputDebugString()
|
||||
on Windows). (Dmitry)
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
#define FTP_BUFSIZE 4096
|
||||
|
||||
typedef enum ftptype {
|
||||
FTPTYPE_ASCII,
|
||||
FTPTYPE_ASCII=1,
|
||||
FTPTYPE_IMAGE
|
||||
} ftptype_t;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue