]> granicus.if.org Git - php/commitdiff
ChangeLog update
author <changelog@php.net> <>
Mon, 6 Feb 2006 06:31:46 +0000 (06:31 +0000)
committer <changelog@php.net> <>
Mon, 6 Feb 2006 06:31:46 +0000 (06:31 +0000)
ChangeLog
Zend/ChangeLog

index 8617faf99c4e376e58f2641ced30ed8ca55e9ac7..c146aa9ae86f1ed173624a362fbfc70e8836e920 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,81 @@
+2006-02-05  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
+
+    * ZendEngine2/zend_interfaces.c
+      ZendEngine2/zend_interfaces.h:
+      - Need one more thing exported
+
+    * ext/simplexml/simplexml.c:
+      - Iterator API was changed
+
+    * ZendEngine2/zend.h
+      ZendEngine2/zend_compile.c
+      ZendEngine2/zend_compile.h
+      ZendEngine2/zend_execute.c
+      ZendEngine2/zend_interfaces.c
+      ZendEngine2/zend_interfaces.h
+      ZendEngine2/zend_iterators.h
+      ZendEngine2/zend_vm_def.h
+      ZendEngine2/zend_vm_execute.h:
+      - Disallow foreach($v as &$ref) when $v is an object that implements
+        interface Iterator. The signature of Iterator::current() doesn't allow
+        that. Maybe ppl also want IteratorByReference or similar. Unfortunatley
+        this comes with an API change but there is no easier way.
+
+2006-02-05  Andrei Zmievski  <andrei@gravitonic.com>
+
+    * ZendEngine2/zend_operators.c:
+      Needs to use .ustr. portion of the union for IS_UNICODE.
+
+2006-02-05  Antony Dovgal  <antony@zend.com>
+
+    * (PHP_5_1)
+      NEWS:
+      MFH: fix #36295 (typo in SplFileObject::flock() parameter name)
+
+2006-02-05  Ilia Alshanetsky  <ilia@prohost.org>
+
+    * (PHP_5_1)
+      run-tests.php:
+      Simplify test code
+
+2006-02-05  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
+
+    * ZendEngine2/zend_operators.c:
+      - Initialize variable
+
+2006-02-05  Pierre-Alain Joye  <pierre.dev@gmail.com>
+
+    * php.ini-dist
+      php.ini-recommended:
+      - MFB: ini entry for gd.jpeg_ignore_warning
+
+    * (PHP_5_1)
+      php.ini-dist
+      php.ini-recommended:
+      - ini entry for gd.jpeg_ignore_warning
+
+    * (PHP_5_1)
+      NEWS:
+      - jpeg tolerant mode entry
+
+    * (PHP_5_1)
+      ext/gd/gd.c
+      ext/gd/libgd/gd.h
+      ext/gd/libgd/gd_jpeg.c:
+      - MFH: add a weak/tolerant mode to the jpeg loader
+
+    * ext/gd/gd.c:
+      - test for jpeg support
+
+2006-02-05  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
+
+    * ZendEngine2/zend_operators.c:
+      - Fix comparision where one argument is an object
+
+    * (PHP_5_1)
+      NEWS:
+      - BFN
+
 2006-02-04  Frank M. Kromann  <frank@kromann.info>
 
     * sapi/cgi/fastcgi.c:
index 0a02ca65fcbcdbf6de39fc075acbf948a06db0f7..ebb30e1bf24a56b382dffd658457cd08398cdbfd 100644 (file)
@@ -1,3 +1,36 @@
+2006-02-05  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
+
+    * zend_interfaces.c
+      zend_interfaces.h:
+      - Need one more thing exported
+
+    * zend.h
+      zend_compile.c
+      zend_compile.h
+      zend_execute.c
+      zend_interfaces.c
+      zend_interfaces.h
+      zend_iterators.h
+      zend_vm_def.h
+      zend_vm_execute.h:
+      - Disallow foreach($v as &$ref) when $v is an object that implements
+        interface Iterator. The signature of Iterator::current() doesn't allow
+        that. Maybe ppl also want IteratorByReference or similar. Unfortunatley
+        this comes with an API change but there is no easier way.
+
+2006-02-05  Andrei Zmievski  <andrei@gravitonic.com>
+
+    * zend_operators.c:
+      Needs to use .ustr. portion of the union for IS_UNICODE.
+
+2006-02-05  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
+
+    * zend_operators.c:
+      - Initialize variable
+
+    * zend_operators.c:
+      - Fix comparision where one argument is an object
+
 2006-02-03  Antony Dovgal  <antony@zend.com>
 
     * zend_builtin_functions.c: