summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author <changelog@php.net>2005-11-02 06:44:42 +0000
committer <changelog@php.net>2005-11-02 06:44:42 +0000
commit971bebd6e3ffcd86a76a26b5871e019d5d6905ea (patch)
tree781d6b006d9bd4b5cc56491f159094413704ac35
parent8de7ff8c9197e8f6723e4af346a6ee875b0c7ac0 (diff)
downloadphp-git-971bebd6e3ffcd86a76a26b5871e019d5d6905ea.tar.gz
ChangeLog update
-rw-r--r--ChangeLog128
-rw-r--r--Zend/ChangeLog31
2 files changed, 159 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f1d780b684..601ee2d117 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,131 @@
+2005-11-01 Rob Richards <rrichards@ctindustries.net>
+
+ * ext/simplexml/simplexml.c
+ ext/simplexml/tests/025.phpt:
+ optimize sxe_add_registered_namespaces
+ add only first encountered prefixes to namespace arrays
+ update test
+
+2005-11-01 Ilia Alshanetsky <ilia@prohost.org>
+
+ * main/SAPI.c:
+ MFB51: Fixed minor memory leak triggered by: -dzlib.output_compression=1 -m
+
+ * (PHP_5_1)
+ main/SAPI.c:
+ Fixed minor memory leak triggered by: -dzlib.output_compression=1 -m
+
+2005-11-01 Jani Taskinen <jani.taskinen@sci.fi>
+
+ * ext/standard/tests/array/bug35014.phpt:
+ MFB: fixed test
+
+ * (PHP_5_1)
+ ext/standard/tests/array/bug35014.phpt:
+ - Fixed test. Some people might actually be using php.ini-dist which
+ has precision set to 12. (and this test results need 14)
+
+2005-11-01 Marcus Boerger <marcus.boerger@post.rwth-aachen.de>
+
+ * ZendEngine2/zend_compile.h:
+ - Get rid of several wanrings
+
+2005-11-01 Frank M. Kromann <frank@kromann.info>
+
+ * (PHP_4_4)
+ ext/mssql/php_mssql.c
+ ext/mssql/php_mssql.c
+ ext/mssql/php_mssql.c:
+ MFH: Fix #35037. Selecting a uniqueidentifier would return unknown data
+ type when used with freetds.
+
+ * ext/mssql/php_mssql.c:
+ Fix #35037. Selecting a uniqueidentifier would return unknown data type
+ when used with freetds.
+
+2005-11-01 Jani Taskinen <jani.taskinen@sci.fi>
+
+ * (PHP_5_1)
+ ext/gd/gd.c
+ ext/gd/gd_ctx.c
+ ext/gd/php_gd.h:
+ MFH: - Added missing safe-mode checks
+
+ * ext/gd/gd.c
+ ext/gd/gd_ctx.c
+ ext/gd/php_gd.h:
+ -** empty log message ***
+
+2005-11-01 Marcus Boerger <marcus.boerger@post.rwth-aachen.de>
+
+ * ZendEngine2/zend_API.c:
+ - Allow parameter parsing implementation raise an error early where more
+ information is available. And add ability to prevent double errors by
+ returning "".
+ - Implement parameter parsing C which checks for a class name, if the
+ value
+ on input is not NULL then the pointer must be the zend_class_entry of
+ the
+ required base class.
+
+2005-11-01 Jani Taskinen <jani.taskinen@sci.fi>
+
+ * php.ini-recommended:
+ MFB51: nuke typo
+
+ * (PHP_5_1)
+ php.ini-recommended:
+ nuke typo
+
+ * (PHP_5_1)
+ ext/iconv/tests/skipif.inc
+ ext/xml/tests/bug32001.phpt:
+ MFH: Hiding bugs is not purpose of the regression tests.
+
+ * ext/iconv/tests/skipif.inc
+ ext/xml/tests/bug32001.phpt:
+ - Hiding bugs is not the purpose of the regression tests.
+
+2005-11-01 Sebastian Bergmann <sb@sebastian-bergmann.de>
+
+ * ZendEngine2/zend_builtin_functions.c
+ ZendEngine2/zend_builtin_functions.h
+ ZendEngine2/zend_exceptions.c:
+ Add an additional field $frame['object'] to the result array of
+ debug_backtrace() that contains a reference to the respective object when
+ the frame was called from an object. This revised patch has been reviewed
+ by Dmitry and Zeev.
+
+2005-11-01 Marcus Boerger <marcus.boerger@post.rwth-aachen.de>
+
+ * ext/simplexml/tests/025.phpt:
+ - Test no namespace case, too
+
+ * ext/simplexml/simplexml.c
+ ext/simplexml/tests/025.phpt:
+ - Handle default namespaces
+
+ * main/snprintf.c:
+ - WS: Make function detection work in my editor
+
+2005-11-01 Sebastian Bergmann <sb@sebastian-bergmann.de>
+
+ * ZendEngine2/acinclude.m4:
+ Allow bison 2.1.
+
+ * NEWS
+ ZendEngine2/zend_builtin_functions.c:
+ Revert.
+
+2005-11-01 Brian France <list@firehawksystems.com>
+
+ * ext/ftp/config.m4:
+ MFB: Fixed phpize build (default PHP_OPENSSL to no if not set)
+
+ * (PHP_5_1)
+ ext/ftp/config.m4:
+ Fixed phpize build (default PHP_OPENSSL to no if not set)
+
2005-10-31 Ilia Alshanetsky <ilia@prohost.org>
* (PHP_4_4)
diff --git a/Zend/ChangeLog b/Zend/ChangeLog
index b58fca5ad0..9ae189abd5 100644
--- a/Zend/ChangeLog
+++ b/Zend/ChangeLog
@@ -1,3 +1,34 @@
+2005-11-01 Marcus Boerger <marcus.boerger@post.rwth-aachen.de>
+
+ * zend_compile.h:
+ - Get rid of several wanrings
+
+ * zend_API.c:
+ - Allow parameter parsing implementation raise an error early where more
+ information is available. And add ability to prevent double errors by
+ returning "".
+ - Implement parameter parsing C which checks for a class name, if the
+ value
+ on input is not NULL then the pointer must be the zend_class_entry of
+ the
+ required base class.
+
+2005-11-01 Sebastian Bergmann <sb@sebastian-bergmann.de>
+
+ * zend_builtin_functions.c
+ zend_builtin_functions.h
+ zend_exceptions.c:
+ Add an additional field $frame['object'] to the result array of
+ debug_backtrace() that contains a reference to the respective object when
+ the frame was called from an object. This revised patch has been reviewed
+ by Dmitry and Zeev.
+
+ * acinclude.m4:
+ Allow bison 2.1.
+
+ * zend_builtin_functions.c:
+ Revert.
+
2005-10-31 Dmitry Stogov <dmitry@zend.com>
* zend_execute.c