]> granicus.if.org Git - php/commitdiff
ChangeLog update
author <changelog@php.net> <>
Thu, 23 Aug 2007 01:31:14 +0000 (01:31 +0000)
committer <changelog@php.net> <>
Thu, 23 Aug 2007 01:31:14 +0000 (01:31 +0000)
ChangeLog
Zend/ChangeLog

index df268cfd4f2f1e6ab3541ae9312dc44cbda4762f..8dddb048a1c7ba7a4d97e2ac8a0cea0b9c325fab 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,67 @@
+2007-08-22  Ilia Alshanetsky  <ilia@prohost.org>
+
+    * (PHP_5_2)
+      NEWS
+      ext/pgsql/pgsql.c:
+      
+      Fixed bug #42368 (Incorrect error message displayed by pg_escape_string).
+
+2007-08-22  Jani Taskinen  <jani.taskinen@iki.fi>
+
+    * (PHP_5_2)
+      NEWS
+      ext/standard/dir.c:
+      MFH:- Fixed bug #42365 (glob() crashes with invalid flags)
+
+    * ext/standard/dir.c:
+      - Fixed bug #42365 (glob() crashes with invalid flags)
+
+2007-08-22  Dmitry Stogov  <dmitry@zend.com>
+
+    * ext/soap/tests/bugs/bug42183.phpt
+      ext/soap/tests/bugs/bug42183.phpt:
+      
+      file bug42183.phpt was initially added on branch PHP_5_2.
+
+    * (PHP_5_2)
+      NEWS
+      ext/soap/php_encoding.c
+      ext/soap/php_encoding.c
+      ext/soap/tests/bugs/bug42183.phpt:
+      Fixed bug #42183 (classmap cause crashr in non-wsdl mode)
+
+    * (PHP_5_2)
+      NEWS
+      ZendEngine2/zend_builtin_functions.c
+      ZendEngine2/zend_builtin_functions.c
+      ZendEngine2/tests/is_a.phpt
+      ZendEngine2/tests/is_a.phpt:
+      Fixed bug #42009 (is_a() and is_subclass_of() should NOT call autoload, in
+      the same way as "instanceof" operator).
+
+    * ZendEngine2/zend_compile.c
+      ZendEngine2/zend_execute_API.c
+      ZendEngine2/zend_vm_def.h
+      ZendEngine2/zend_vm_execute.h
+      ZendEngine2/tests/ns_021.phpt
+      ZendEngine2/tests/ns_026.phpt:
+      Fixed name resolution
+        namespace A;
+          B::foo(); // 1. this is function "foo" from namespace "B"
+                    // 2. this is static method "foo" of class "B" from
+      namespace "A"
+                    // 3. this is static methos "boo" of internal class "B"
+        namespace A;
+          A::foo(); // 1. this is function "foo" from namespace "A"
+                    // 2. this is static method "foo" of class "A" from
+      namespace "A"
+                    // 3. this is static methos "foo" of internal class "A"
+
+    * ZendEngine2/zend_compile.c
+      ZendEngine2/tests/ns_029.phpt
+      ZendEngine2/tests/ns_030.phpt:
+      typo
+
 2007-08-21  Ilia Alshanetsky  <ilia@prohost.org>
 
     * ext/pgsql/pgsql.c:
index e5fb5a9525cac3f7b23b17f4729f582a479ef81c..207986c7d9a50fd85bcb90bf92b29d107ba5fe14 100644 (file)
@@ -1,3 +1,35 @@
+2007-08-22  Dmitry Stogov  <dmitry@zend.com>
+
+    * zend_builtin_functions.c
+      zend_builtin_functions.c
+      tests/is_a.phpt
+      tests/is_a.phpt:
+      Fixed bug #42009 (is_a() and is_subclass_of() should NOT call autoload, in
+      the same way as "instanceof" operator).
+
+    * zend_compile.c
+      zend_execute_API.c
+      zend_vm_def.h
+      zend_vm_execute.h
+      tests/ns_021.phpt
+      tests/ns_026.phpt:
+      Fixed name resolution
+        namespace A;
+          B::foo(); // 1. this is function "foo" from namespace "B"
+                    // 2. this is static method "foo" of class "B" from
+      namespace "A"
+                    // 3. this is static methos "boo" of internal class "B"
+        namespace A;
+          A::foo(); // 1. this is function "foo" from namespace "A"
+                    // 2. this is static method "foo" of class "A" from
+      namespace "A"
+                    // 3. this is static methos "foo" of internal class "A"
+
+    * zend_compile.c
+      tests/ns_029.phpt
+      tests/ns_030.phpt:
+      typo
+
 2007-08-20  Dmitry Stogov  <dmitry@zend.com>
 
     * zend_API.c