]> granicus.if.org Git - php/commitdiff
ChangeLog update
author <changelog@php.net> <>
Tue, 3 Feb 2004 01:32:21 +0000 (01:32 +0000)
committer <changelog@php.net> <>
Tue, 3 Feb 2004 01:32:21 +0000 (01:32 +0000)
ChangeLog
Zend/ChangeLog

index 435f78d01b83270b3ab71f08f5915193883621d1..5cd75679757baa9caea39222f0bb34b41213312d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,75 @@
+2004-02-02  Andrey Hristov  <php@hristov.com>
+
+    * ext/skeleton/php_skeleton.h
+      ext/skeleton/php_skeleton.h:
+      typo fix
+
+2004-02-02  Ard Biesheuvel  <a.k.biesheuvel@ewi.tudelft.nl>
+
+    * NEWS:
+      Interbase news
+
+    * ext/interbase/ibase_service.c
+      ext/interbase/interbase.c:
+      Use correct flag for repair options
+
+    * ext/interbase/ibase_service.c:
+      Fix Win32 build
+
+    * ext/interbase/ibase_service.c
+      ext/interbase/interbase.c
+      ext/interbase/php_interbase.h:
+      Use php_ prefix for header files
+      Added nearly complete implementation of service API
+
+    * ext/interbase/ibase_blobs.c
+      ext/interbase/ibase_events.c
+      ext/interbase/interbase.h
+      ext/interbase/php_ibase_includes.h:
+      Use php_ prefix for header files.
+
+2004-02-02  Zeev Suraski  <zeev@zend.com>
+
+    * ZendEngine2/zend_compile.c
+      ZendEngine2/zend_compile.h
+      ZendEngine2/zend_language_parser.y
+      ZendEngine2/zend_language_scanner.l
+      ZendEngine2/zend_objects.c:
+      Redesign the clone() feature to fix some fundamental flaws in the previous
+      implementation.
+      
+      Using clone directly is now done using
+      $replica = clone $src;
+      
+      Clone methods must now be declared as follows:
+      function __clone($that)
+      {
+      }
+      
+      Clone methods in derived classes can call the __clone method of their
+      parent
+      classes using parent::__clone($that)
+
+2004-02-02  Antony Dovgal  <tony2001@phpclub.net>
+
+    * ext/oci8/oci8.c:
+      add missing alias for ocifreecursor()
+
+2004-02-02  Jani Taskinen  <jani.taskinen@kolumbus.fi>
+
+    * ext/simplexml/simplexml.c:
+      CS fix (functions should not be available if they are not available :)
+
+2004-02-02  Antony Dovgal  <tony2001@phpclub.net>
+
+    * ext/oci8/oci8.c:
+      fix yet another possible segfault
+
+2004-02-02  Ilia Alshanetsky  <ilia@prohost.org>
+
+    * ext/calendar/calendar.c:
+      Fixed possible overflows.
+
 2004-02-01  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>
 
     * (PHP_4_3)
index 2c7a3912d286b2cf46988e4ffa11c48b9c7ceb05..18442b727b28489baf86c9bb7c4cde5e96f86860 100644 (file)
@@ -1,3 +1,25 @@
+2004-02-02  Zeev Suraski  <zeev@zend.com>
+
+    * zend_compile.c
+      zend_compile.h
+      zend_language_parser.y
+      zend_language_scanner.l
+      zend_objects.c:
+      Redesign the clone() feature to fix some fundamental flaws in the previous
+      implementation.
+      
+      Using clone directly is now done using
+      $replica = clone $src;
+      
+      Clone methods must now be declared as follows:
+      function __clone($that)
+      {
+      }
+      
+      Clone methods in derived classes can call the __clone method of their
+      parent
+      classes using parent::__clone($that)
+
 2004-01-31  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
 
     * zend_reflection_api.c: