summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author <changelog@php.net>2004-01-13 01:32:17 +0000
committer <changelog@php.net>2004-01-13 01:32:17 +0000
commit24f5ca6ab58cdc024aaa80cfd304431632bcd087 (patch)
treec242969c60a64109162be13c29aa306a39823afd
parentb7d0b397bc748d035a43eb0ee918279b0b5df2fe (diff)
downloadphp-git-24f5ca6ab58cdc024aaa80cfd304431632bcd087.tar.gz
ChangeLog update
-rw-r--r--ChangeLog63
-rw-r--r--Zend/ChangeLog18
2 files changed, 81 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ac8445cf18..7a34f1fffa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,66 @@
+2004-01-12 Ilia Alshanetsky <ilia@prohost.org>
+
+ * ext/sqlite/sess_sqlite.c:
+ Fixed a bug that would cause the sqlite session database to grow endlessly.
+
+2004-01-12 Ard Biesheuvel <a.k.biesheuvel@ewi.tudelft.nl>
+
+ * ext/interbase/interbase.c:
+ More handsome solution for previous fix
+
+ * ext/interbase/interbase.c:
+ Added sanity check on ibase_[p]connect() dialect argument (fixes obscure
+ unregistered bug)
+
+2004-01-12 Martin Kraemer <Martin.Kraemer@fujitsu-siemens.com>
+
+ * ext/bz2/php_bz2.h:
+ Avoid duplicate symbols; definition is in bz2.c
+
+2004-01-12 Ilia Alshanetsky <ilia@prohost.org>
+
+ * (PHP_4_3)
+ configure.in
+ main/php_version.h:
+ Back to dev.
+
+ * (PHP_4_3)
+ NEWS:
+ Set release date.
+
+ * (PHP_4_3)
+ configure.in
+ main/php_version.h:
+ Go with 4.3.5RC1
+
+2004-01-12 Andi Gutmans <andi@zend.com>
+
+ * ZendEngine2/zend_compile.c:
+ - Return the PHP 4 behavior of not allowing class declerations within
+ - class declerations. This happened when declaring a class within a
+ - method.
+ class A {
+ function foo() {
+ class B {
+ }
+ }
+ }
+
+2004-01-12 Marcus Boerger <marcus.boerger@post.rwth-aachen.de>
+
+ * ext/mysql/php_mysql.c:
+ Synch mysql_fetch_object with mysqli, sqlite and pgsql
+
+ * ext/mysqli/mysqli_nonapi.c:
+ Proto fix
+
+ * ext/sqlite/sqlite.c:
+ No longer needed
+
+ * ZendEngine2/zend_API.h
+ main/php.h:
+ Add missing macro
+
2004-01-11 Wez Furlong <wez.php@thebrainroom.net>
* ZendEngine2/zend_compile.c
diff --git a/Zend/ChangeLog b/Zend/ChangeLog
index af3bab2daa..58aa59078e 100644
--- a/Zend/ChangeLog
+++ b/Zend/ChangeLog
@@ -1,3 +1,21 @@
+2004-01-12 Andi Gutmans <andi@zend.com>
+
+ * zend_compile.c:
+ - Return the PHP 4 behavior of not allowing class declerations within
+ - class declerations. This happened when declaring a class within a
+ - method.
+ class A {
+ function foo() {
+ class B {
+ }
+ }
+ }
+
+2004-01-12 Marcus Boerger <marcus.boerger@post.rwth-aachen.de>
+
+ * zend_API.h:
+ Add missing macro
+
2004-01-11 Wez Furlong <wez.php@thebrainroom.net>
* zend_compile.c