diff options
author | <changelog@php.net> | 2002-10-17 00:33:37 +0000 |
---|---|---|
committer | <changelog@php.net> | 2002-10-17 00:33:37 +0000 |
commit | 5a935a445b6d67cdc72ffebb43c6e4c70218d04d (patch) | |
tree | 8dff0ab0cb7942d674de03cbf2790546cbfc38a4 | |
parent | 7bacb2fcc4b6f26045b7e1ae736e301137acf819 (diff) | |
download | php-git-5a935a445b6d67cdc72ffebb43c6e4c70218d04d.tar.gz |
ChangeLog update
-rw-r--r-- | ChangeLog | 59 | ||||
-rw-r--r-- | Zend/ChangeLog | 30 |
2 files changed, 89 insertions, 0 deletions
@@ -1,3 +1,62 @@ +2002-10-16 Harald Radi <harald.radi+coding.php@nme.at> + + * ext/com/VARIANT.c + ext/com/conversion.c + ext/com/conversion.h: + changed the VARIANT class to be able to create arrays of all types + and not only VT_VARIANT + +2002-10-16 Rasmus Lerdorf <rasmus@lerdorf.on.ca> + + * ext/gd/libgd/gd_topal.c: Fix for bug #19941 + +2002-10-16 Ilia Alshanetsky <ilia@prohost.org> + + * sapi/apache2filter/sapi_apache2.c: Fixed a bug with .phps handler. + + * main/main.c: + Fixed bug #19921. (memory leak introduced by me in rev 1.492) + +2002-10-16 Jani Taskinen <sniper@iki.fi> + + * acinclude.m4: - Fix typo.. + +2002-10-16 Sebastian Bergmann <sb@sebastian-bergmann.de> + + * main/config.w32.h.in: Revert. Again. + +2002-10-16 Rui Hirokawa <rui_hirokawa@ybb.ne.jp> + + * ext/mbstring/mbstring.c: modified zend_bool handling code. + + * ext/mbstring/mbstring.h: *** empty log message *** + + * ext/mbstring/mbstring.c: + fixed a problem when mbstring.encoding_translation is defined per directory basis. + +2002-10-16 Edin Kadribasic <edink@proventum.net> + + * NEWS: Newly available extensions on windows. + +2002-10-16 Sebastian Bergmann <sb@sebastian-bergmann.de> + + * main/config.w32.h.in: Patch by Urs Gehrig <urs@circle.ch>. + +2002-10-16 Jani Taskinen <sniper@iki.fi> + + * ext/snmp/snmp.c: - Fixed memleak when connection fails. + - Fixed snmpget() to work with net-snmp + - Fixed the error messages to use the new style. + + * ext/snmp/snmp.c: Some more compatibility fixes for net-snmp vs ucd-snmp + + * ext/snmp/snmp.c: + - Fix the last commit..(thanks to Harrie Hazewinkel <harrie@lisanza.net>) + +2002-10-16 Edin Kadribasic <edink@proventum.net> + + * ext/fribidi/fribidi.dsp: Added win32 project file. + 2002-10-15 Yasuo Ohgaki <yohgaki@ohgaki.net> * main/output.c: Sync with head diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 845ee23571..6ef95f2220 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,33 @@ +2002-10-16 Sebastian Bergmann <sb@sebastian-bergmann.de> + + * zend_execute.c: Fix ZTS build. + +2002-10-16 Stanislav Malyshev <stas@zend.com> + + * zend_compile.c + zend_execute.c: Fix class static members: now the following code works: + <?php + + class Foo { + static $c = "Parent"; + } + + class Child extends Foo { + } + + Foo::$c = "Hello"; + + var_dump(Child::$c); + ?> + and returns "Hello" (class statics are not copied anymore, but looked up in + runtime) + + * zend_compile.c + zend_compile.h + zend_execute.c: Fix and generalize $this handling. + ZEND_FETCH_FROM_THIS is removed, IS_UNUSED type on class variables will be + used instead as the sign that it's a fetch from $this + 2002-10-14 Ilia Alshanetsky <ilia@prohost.org> * zend_ini_parser.y |