diff options
author | <changelog@php.net> | 2008-01-12 01:31:36 +0000 |
---|---|---|
committer | <changelog@php.net> | 2008-01-12 01:31:36 +0000 |
commit | dc07ea84164aed1160fb18d295045ee331e1a8b1 (patch) | |
tree | ab217f695253a9620ad4fd3fc61dc5536376c655 | |
parent | 02cbdbe853685eb90d5fb71ba8bf8eab9a1a61e8 (diff) | |
download | php-git-dc07ea84164aed1160fb18d295045ee331e1a8b1.tar.gz |
ChangeLog update
-rw-r--r-- | ChangeLog | 68 | ||||
-rw-r--r-- | Zend/ChangeLog | 25 |
2 files changed, 93 insertions, 0 deletions
@@ -1,3 +1,71 @@ +2008-01-11 Dmitry Stogov <dmitry@zend.com> + + * ZendEngine2/zend_execute.c + ZendEngine2/zend_execute.c: + Simplified assignment to string offset + +2008-01-11 Lukas Smith <smith@pooteeweet.org> + + * README.MAILINGLIST_RULES: + - added rules about real names and signatures + +2008-01-11 Rob Richards <rrichards@ctindustries.net> + + * (PHP_5_2) + ext/libxml/config.w32: + MFH: starting with 2.6.30, standard libxml2 build can be used + +2008-01-11 Lukas Smith <smith@pooteeweet.org> + + * README.MAILINGLIST_RULES: + - minor typo fixes + +2008-01-11 Dmitry Stogov <dmitry@zend.com> + + * ZendEngine2/zend_vm_def.h + ZendEngine2/zend_vm_def.h + ZendEngine2/zend_vm_execute.h + ZendEngine2/zend_vm_execute.h: + Fixed unspecialized executor + +2008-01-11 Lukas Smith <smith@pooteeweet.org> + + * README.MAILINGLIST_RULES + README.MAILINGLIST_RULES: + + - initial commit .. feedback appreciated + +2008-01-11 Dmitry Stogov <dmitry@zend.com> + + * (PHP_5_3) + NEWS + ZendEngine2/zend_execute.c + ZendEngine2/zend_execute.c + ZendEngine2/tests/bug32799.phpt + ZendEngine2/tests/bug32799.phpt + ZendEngine2/tests/bug39346.phpt + ZendEngine2/tests/bug39346.phpt + ZendEngine2/tests/bug39346.phpt: + Fixed bug #39346 (Unsetting a static variable inside a destructor causes + segfault later on) + +2008-01-11 Ilia Alshanetsky <ilia@prohost.org> + + * (PHP_5_2) + NEWS + ext/pdo/pdo_stmt.c + ext/pdo/pdo_stmt.c: + + MFB: Fixed a bug with PDO::FETCH_COLUMN|PDO::FETCH_GROUP mode when a + column + + * (PHP_5_3) + ext/pdo/pdo_stmt.c: + + Fixed a bug with PDO::FETCH_COLUMN|PDO::FETCH_GROUP mode when a column # + by + which to group by data is specified. + 2008-01-10 Brian Shire <shire@tekrat.com> * (PHP_5_2) diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 4203d128f2..5cc87ce8d2 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,28 @@ +2008-01-11 Dmitry Stogov <dmitry@zend.com> + + * zend_execute.c + zend_execute.c: + Simplified assignment to string offset + + * zend_vm_def.h + zend_vm_def.h + zend_vm_execute.h + zend_vm_execute.h: + Fixed unspecialized executor + + * zend_execute.c + zend_execute.c + tests/bug32799.phpt + tests/bug32799.phpt + tests/bug39346.phpt: + Fixed bug #39346 (Unsetting a static variable inside a destructor causes + segfault later on) + + * tests/bug39346.phpt + tests/bug39346.phpt: + + file bug39346.phpt was initially added on branch PHP_5_3. + 2008-01-10 Dmitry Stogov <dmitry@zend.com> * zend_execute_API.c |