mirror of
https://github.com/php/php-src.git
synced 2024-12-12 03:15:29 +08:00
ChangeLog update
This commit is contained in:
parent
8dc11c8c28
commit
0d65d72f77
139
ChangeLog
139
ChangeLog
@ -1,3 +1,142 @@
|
||||
2006-07-19 Marcus Boerger <marcus.boerger@post.rwth-aachen.de>
|
||||
|
||||
* ext/pcre/php_pcre.h:
|
||||
- WS
|
||||
|
||||
2006-07-19 Pierre-Alain Joye <pierre.dev@gmail.com>
|
||||
|
||||
* ext/xmlwriter/tests/009.phpt
|
||||
ext/xmlwriter/tests/OO_009.phpt:
|
||||
- MFH: fix tests, libxml 2.6.24 and up adds a new line after a processing
|
||||
instruction (PI)
|
||||
|
||||
* (PHP_5_2)
|
||||
ext/xmlwriter/tests/009.phpt
|
||||
ext/xmlwriter/tests/OO_009.phpt:
|
||||
- fix tests for PI with libxml 2.6.24+, a new line is now added
|
||||
|
||||
2006-07-19 Rob Richards <rrichards@ctindustries.net>
|
||||
|
||||
* ext/xmlreader/php_xmlreader.c
|
||||
ext/xmlreader/tests/012.phpt
|
||||
ext/xmlreader/tests/013.phpt:
|
||||
unicode support
|
||||
update tests
|
||||
|
||||
* ext/libxml/php_libxml.h:
|
||||
add unicode compatible macros for returning strings from xml based
|
||||
extensions
|
||||
|
||||
2006-07-19 Andrei Zmievski <andrei@gravitonic.com>
|
||||
|
||||
* ZendEngine2/zend_API.c:
|
||||
Fix usage of 'return_null' option in parameter parsing.
|
||||
|
||||
* README.PARAMETER_PARSING_API
|
||||
ZendEngine2/zend_API.c:
|
||||
Make 't' and 'T' use zstr for storage type.
|
||||
|
||||
* README.PARAMETER_PARSING_API
|
||||
ZendEngine2/zend_API.c:
|
||||
Add '+' varargs specifier that requires at least one arg.
|
||||
|
||||
2006-07-19 Ilia Alshanetsky <ilia@prohost.org>
|
||||
|
||||
* (PHP_5_2)
|
||||
NEWS:
|
||||
Extension news
|
||||
|
||||
* ext/json/JSON_parser.h
|
||||
ext/json/config.m4
|
||||
ext/json/json.c:
|
||||
MFB: Fixed compiler warnings and enable Json by default.
|
||||
|
||||
* (PHP_5_2)
|
||||
ext/json/JSON_parser.h
|
||||
ext/json/config.m4
|
||||
ext/json/json.c:
|
||||
Fixed compiler warnings and enable Json by default.
|
||||
|
||||
2006-07-19 Jani Taskinen <jani.taskinen@sci.fi>
|
||||
|
||||
* (PHP_5_2)
|
||||
NEWS:
|
||||
un*uck NEWS
|
||||
|
||||
* (PHP_5_2)
|
||||
ZendEngine2/README.ZEND_MM:
|
||||
Missing file..
|
||||
|
||||
2006-07-19 Michael Wallner <mike@iworks.at>
|
||||
|
||||
* ext/standard/basic_functions.c
|
||||
ext/standard/basic_functions.h
|
||||
main/main.c
|
||||
main/php_globals.h:
|
||||
- added error_get_last() function
|
||||
|
||||
2006-07-19 Dmitry Stogov <dmitry@zend.com>
|
||||
|
||||
* (PHP_5_2)
|
||||
NEWS
|
||||
ZendEngine2/zend_vm_def.h
|
||||
ZendEngine2/zend_vm_execute.h
|
||||
ZendEngine2/tests/bug37144.phpt:
|
||||
Fixed bug #37144 (PHP crashes trying to assign into property of dead
|
||||
object)
|
||||
|
||||
2006-07-19 Antony Dovgal <antony@zend.com>
|
||||
|
||||
* (PHP_5_2)
|
||||
ext/filter/callback_filter.c:
|
||||
no need to fetch name and free it immediately after that
|
||||
|
||||
* ext/filter/callback_filter.c:
|
||||
no need to fetch name and free it immediately after that
|
||||
the patch also fixes a segfault
|
||||
|
||||
* ext/filter/tests/007.phpt
|
||||
ext/filter/tests/007.phpt
|
||||
ext/filter/tests/011.phpt
|
||||
ext/filter/tests/011.phpt
|
||||
ext/filter/tests/014.phpt
|
||||
ext/filter/tests/014.phpt
|
||||
ext/filter/tests/033.phpt
|
||||
ext/filter/tests/033.phpt
|
||||
ext/filter/tests/033_run.inc
|
||||
ext/filter/tests/033_run.inc
|
||||
ext/filter/tests/033_run.inc
|
||||
ext/filter/tests/033_run.php
|
||||
ext/filter/tests/033_run.php:
|
||||
fix tests
|
||||
|
||||
* (PHP_5_2)
|
||||
ext/filter/filter.c:
|
||||
MFH: increase refcount when adding zval to the result array
|
||||
|
||||
* ext/filter/filter.c:
|
||||
increase refcount when adding zval to the result array
|
||||
|
||||
* ext/filter/filter.c
|
||||
ext/filter/filter.c
|
||||
ext/filter/logical_filters.c
|
||||
ext/filter/logical_filters.c
|
||||
ext/filter/sanitizing_filters.c
|
||||
ext/filter/sanitizing_filters.c:
|
||||
fix compile warnings
|
||||
|
||||
* ZendEngine2/zend.c:
|
||||
MFB: fetch tsrm_ls, don't use it uninitialized
|
||||
|
||||
* (PHP_5_2)
|
||||
ZendEngine2/zend.c:
|
||||
fetch tsrm_ls, don't use it uninitialized
|
||||
|
||||
2006-07-19 Andrei Zmievski <andrei@gravitonic.com>
|
||||
|
||||
* ZendEngine2/zend_API.c:
|
||||
Initialize some vars.
|
||||
|
||||
2006-07-18 Marcus Boerger <marcus.boerger@post.rwth-aachen.de>
|
||||
|
||||
* ext/filter/filter.c:
|
||||
|
@ -1,3 +1,43 @@
|
||||
2006-07-19 Andrei Zmievski <andrei@gravitonic.com>
|
||||
|
||||
* zend_API.c:
|
||||
Fix usage of 'return_null' option in parameter parsing.
|
||||
|
||||
* zend_API.c:
|
||||
Make 't' and 'T' use zstr for storage type.
|
||||
|
||||
* zend_API.c:
|
||||
Add '+' varargs specifier that requires at least one arg.
|
||||
|
||||
2006-07-19 Jani Taskinen <jani.taskinen@sci.fi>
|
||||
|
||||
* (PHP_5_2)
|
||||
README.ZEND_MM:
|
||||
Missing file..
|
||||
|
||||
2006-07-19 Dmitry Stogov <dmitry@zend.com>
|
||||
|
||||
* (PHP_5_2)
|
||||
zend_vm_def.h
|
||||
zend_vm_execute.h
|
||||
tests/bug37144.phpt:
|
||||
Fixed bug #37144 (PHP crashes trying to assign into property of dead
|
||||
object)
|
||||
|
||||
2006-07-19 Antony Dovgal <antony@zend.com>
|
||||
|
||||
* zend.c:
|
||||
MFB: fetch tsrm_ls, don't use it uninitialized
|
||||
|
||||
* (PHP_5_2)
|
||||
zend.c:
|
||||
fetch tsrm_ls, don't use it uninitialized
|
||||
|
||||
2006-07-19 Andrei Zmievski <andrei@gravitonic.com>
|
||||
|
||||
* zend_API.c:
|
||||
Initialize some vars.
|
||||
|
||||
2006-07-18 Andrei Zmievski <andrei@gravitonic.com>
|
||||
|
||||
* zend_API.c:
|
||||
|
Loading…
Reference in New Issue
Block a user