diff options
author | <changelog@php.net> | 2003-01-28 01:33:49 +0000 |
---|---|---|
committer | <changelog@php.net> | 2003-01-28 01:33:49 +0000 |
commit | 90f9f62665dd59c73e5af00440db9d98eda1968c (patch) | |
tree | 5913c7232fc6f16c4e6ac899b1b0f2055e4c306e | |
parent | d92a1f4dc102db7dca841f33634aa90ec713ae76 (diff) | |
download | php-git-90f9f62665dd59c73e5af00440db9d98eda1968c.tar.gz |
ChangeLog update
-rw-r--r-- | ChangeLog | 74 | ||||
-rw-r--r-- | Zend/ChangeLog | 11 |
2 files changed, 85 insertions, 0 deletions
@@ -1,3 +1,77 @@ +2003-01-27 Ilia Alshanetsky <ilia@prohost.org> + + * 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 <maxim@maxim.cx> + + * ext/oci8/oci8.c: + This fixes "warning C4101: 'charsetid' : unreferenced local variable" on + VC6 + + * ext/oci8/oci8.c: + (Maxim) + +2003-01-27 Sara Golemon <php@alphaweb.net> + + * ext/ftp/ftp.c + ext/ftp/ftp.h + ext/ftp/php_ftp.c: + Fix potential buffer overflow. + +2003-01-27 Ilia Alshanetsky <ilia@prohost.org> + + * main/output.c: + Removed pointless checks. + +2003-01-27 Edin Kadribasic <edink@proventum.net> + + * (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 <sniper@iki.fi> + + * (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 <uwe@steinmann.cx> + + * 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 <php@alphaweb.net> + + * 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 <moriyoshi@at.wakwak.com> + + * tests/lang/bug21600.phpt: + Updated test so it describes the problem more clearly. + 2003-01-26 Stig Bakken <ssb@fast.no> * 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 <stas@zend.com> + + * 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 <sascha@schumann.cx> * zend_API.c: |