summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author <changelog@php.net>2003-08-21 00:31:53 +0000
committer <changelog@php.net>2003-08-21 00:31:53 +0000
commita060bc75c76587560104ef16819aab37e938e7c0 (patch)
tree8162f8f0ecb0095337747d1188d68315c53b0e41
parent1cf91a7ac5f030a6e0e2cf2dec646dee2ad507d5 (diff)
downloadphp-git-a060bc75c76587560104ef16819aab37e938e7c0.tar.gz
ChangeLog update
-rw-r--r--ChangeLog123
-rw-r--r--Zend/ChangeLog10
2 files changed, 133 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6b976d5c19..261fea2eb8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,126 @@
+2003-08-20 Brian France <list@firehawksystems.com>
+
+ * NEWS:
+
+ - Added new setrawcookie function (bfrance)
+
+2003-08-20 Zeev Suraski <zeev@zend.com>
+
+ * ZendEngine2/zend_alloc.c:
+ adhere to silence
+
+2003-08-20 Ard Biesheuvel <a.k.biesheuvel@its.tudelft.nl>
+
+ * (PHP_4_3)
+ ext/interbase/interbase.c:
+ MFH Fix false warning on zero-size BLOB fetch (introduced in RC3)
+
+2003-08-20 Zeev Suraski <zeev@zend.com>
+
+ * main/main.c:
+ No need for those code blocks anymore...
+
+2003-08-20 Ard Biesheuvel <a.k.biesheuvel@its.tudelft.nl>
+
+ * ext/interbase/interbase.c:
+ Fix false warning on zero-size BLOB fetch
+
+2003-08-20 Marcus Boerger <marcus.boerger@post.rwth-aachen.de>
+
+ * ZendEngine2/zend_alloc.c:
+ Fix counting number of leaks
+
+2003-08-20 Sara Golemon <php@alphaweb.net>
+
+ * ext/standard/ftp_fopen_wrapper.c:
+ Add resume_pos (resume position) context option for restarting file
+ downloads.
+
+2003-08-20 Brian France <list@firehawksystems.com>
+
+ * ext/standard/basic_functions.c
+ ext/standard/head.c
+ ext/standard/head.h:
+
+ Added a parameter to php_setcookie to toggle URL encoding of the cookie
+ data
+ Added the function setrawcookie that turns off URL encoding of the cookie
+ data
+ Changed setcookie to turn on the URL encoding of the cookie data
+
+2003-08-20 Ard Biesheuvel <a.k.biesheuvel@its.tudelft.nl>
+
+ * ext/interbase/interbase.c
+ ext/interbase/php_interbase.h:
+ Reuse result data structure and resource id for consecutive executions
+ of a prepared query
+
+2003-08-20 Brad House <brad@mainstreetsoftworks.com>
+
+ * ext/mcve/mcve.c
+ ext/mcve/mcve.c:
+ allow destructor to clean up connection data
+
+2003-08-20 Rob Richards <rrichards@ctindustries.net>
+
+ * ext/dom/php_dom.c:
+ fix infinite loop in normalize
+
+ * ext/xsl/xsltprocessor.c:
+ doc must be copied when importing stylesheet
+ libxslt uses the _private for processing
+
+2003-08-20 Ilia Alshanetsky <ilia@prohost.org>
+
+ * (PHP_4_3)
+ ext/standard/php_rand.h
+ main/reentrancy.c:
+ MFH: Fixed bug #25170 (Problem with generation of random numbers on
+ solaris)
+
+ * ext/standard/php_rand.h
+ main/reentrancy.c:
+ Fixed bug #25170 (Problem with generation of random numbers on solaris)
+
+2003-08-20 Ard Biesheuvel <a.k.biesheuvel@its.tudelft.nl>
+
+ * ext/interbase/interbase.c
+ ext/interbase/php_interbase.h:
+ Moved transaction defaults to header file
+
+ * ext/interbase/interbase.c:
+ Cleaned up _php_ibase_var_zval()
+
+ * ext/interbase/interbase.c:
+ Fix Win32 build
+
+ * ext/interbase/interbase.c:
+ Moved some local vars to stack
+
+ * ext/interbase/interbase.c
+ ext/interbase/php_interbase.h:
+ Nuke link handle from BLOB id
+ Added link argument to ibase_blob_{open|info|echo}()
+
+2003-08-20 Jani Taskinen <sniper@iki.fi>
+
+ * (PHP_4_3)
+ scripts/phpize.in:
+ MFH: - Fixed bug #25163 (OSX: phpize has to use glibtoolize instead)
+
+ * ext/bz2/config.m4:
+ Fix phpize build
+
+ * scripts/phpize.in:
+ - Fixed bug #25163 (OSX: phpize has to use glibtoolize instead)
+
+2003-08-20 Jon Parise <jon@csh.rit.edu>
+
+ * ext/sqlite/Makefile.frag:
+ Explicitly declare the dependencies on the generated sqlite.h file. This
+ allows the libsqlite source tree (and php-src, as a whole) to be built
+ using 'make -j' once again.
+
2003-08-19 Marcus Boerger <marcus.boerger@post.rwth-aachen.de>
* tests/lang/bug25145.phpt:
diff --git a/Zend/ChangeLog b/Zend/ChangeLog
index d63e934fc3..ae6db2c6eb 100644
--- a/Zend/ChangeLog
+++ b/Zend/ChangeLog
@@ -1,3 +1,13 @@
+2003-08-20 Zeev Suraski <zeev@zend.com>
+
+ * zend_alloc.c:
+ adhere to silence
+
+2003-08-20 Marcus Boerger <marcus.boerger@post.rwth-aachen.de>
+
+ * zend_alloc.c:
+ Fix counting number of leaks
+
2003-08-19 Wez Furlong <wez.php@thebrainroom.net>
* zend_execute.c: