1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 18:22:42 +01:00

ChangeLog update

This commit is contained in:
2004-07-02 00:32:17 +00:00
parent 2ba0608e48
commit ae5301c5d5
2 changed files with 42 additions and 0 deletions

View File

@@ -1,3 +1,39 @@
2004-07-01 Ilia Alshanetsky <ilia@prohost.org>
* (PHP_4_3)
Zend/zend_constants.c:
MFHZE2: Do not use alloca() where it can be easily abused by the users.
* ZendEngine2/zend_constants.c:
Do not use alloca() where it can be easily abused by the users.
2004-07-01 Zeev Suraski <zeev@zend.com>
* (PHP_4_3)
main/php_ini.c:
MFH (more or less) registry-based setting for the location of php.ini
2004-07-01 Sterling Hughes <winnie@edwardbear.org>
* ext/curl/interface.c:
fix bug wrt to CURLOPT_POSTFIELDS where if you passed it code like:
$fields = array('foo' => 'bar');
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
curl_exec($ch);
as opposed to :
curl_setopt($ch, CURLOPT_POSTFIELDS, array('foo' => 'bar'));
you'll get a segv or no results, depending on the mood and cycle of the
moon.
2004-07-01 Sara Golemon <php@alphaweb.net>
* ext/cpdf/cpdf.c:
That hashtable should never have been an argument....
2004-06-30 Frank M. Kromann <frank@kromann.info>
* NEWS

View File

@@ -1,3 +1,9 @@
2004-07-01 Ilia Alshanetsky <ilia@prohost.org>
* zend_constants.c:
Do not use alloca() where it can be easily abused by the users.
2004-06-25 Wez Furlong <wez.php@thebrainroom.net>
* zend_stream.c