From: Date: Tue, 28 Jan 2003 01:33:49 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: PHP_5_0_dev_before_13561_fix~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=90f9f62665dd59c73e5af00440db9d98eda1968c;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index b7ca5c1d68..6652b9409f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,77 @@ +2003-01-27 Ilia Alshanetsky + + * configure.in + main/php_ini.c + main/php_scandir.c + main/php_scandir.h + win32/readdir.c + win32/readdir.h: + Moved the scandir code into it's own files so that it can be used by other + OSes where libc does not have a native scandir() implementation. + +2003-01-27 Maxim Maletsky + + * ext/oci8/oci8.c: + This fixes "warning C4101: 'charsetid' : unreferenced local variable" on + VC6 + + * ext/oci8/oci8.c: + (Maxim) + +2003-01-27 Sara Golemon + + * ext/ftp/ftp.c + ext/ftp/ftp.h + ext/ftp/php_ftp.c: + Fix potential buffer overflow. + +2003-01-27 Ilia Alshanetsky + + * main/output.c: + Removed pointless checks. + +2003-01-27 Edin Kadribasic + + * (PHP_4_3) + NEWS + ext/standard/dir.c + win32/glob.c: + MFH: Fixed bug #21597 (made glob() understand Windows paths). + + * ext/standard/dir.c + win32/glob.c: + Fixed bug #21597 (made glob() understand windows paths) + +2003-01-27 Jani Taskinen + + * (PHP_4_3) + configure.in: + revert previous commit + + * (PHP_4_3) + configure.in: + MFH: use grep -E instead of egrep. the latter is not defined by POSIX + anymore + +2003-01-27 Uwe Steinmann + + * ext/hyperwave/hw.c: + - fixed several bugs in hw_document_xx() functions. The macro to access + the document was the same as for a link to the sever. + +2003-01-27 Sara Golemon + + * ext/ftp/ftp.c + ext/ftp/ftp.h + ext/ftp/php_ftp.c + ext/ftp/php_ftp.h: + Feature Request #21748. Added function ftp_chmod(). + +2003-01-27 Moriyoshi Koizumi + + * tests/lang/bug21600.phpt: + Updated test so it describes the problem more clearly. + 2003-01-26 Stig Bakken * pear/PEAR.php: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 04cbd51619..9bff7e3c1b 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,14 @@ +2003-01-27 Stanislav Malyshev + + * zend_compile.c + zend_compile.h + zend_execute.c: + Replace MAKE_VAR opcode with special 'data' opcode + This opcode is not executeable but only holds data for opcodes + that need more than two arguments (presently only ASSIGN_OBJ and the ilk + but + in the future also ASSIGN_DIM) + 2003-01-26 Sascha Schumann * zend_API.c: