From a2343295352005e8b8427b8a63faedd09cc307d1 Mon Sep 17 00:00:00 2001 From: Date: Sun, 30 Jul 2000 01:09:10 +0000 Subject: [PATCH] ChangeLog update --- ChangeLog | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) diff --git a/ChangeLog b/ChangeLog index c0a557285c..d272180b97 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,73 @@ +2000-07-29 Rasmus Lerdorf + + * ext/standard/url.c + ext/standard/url.h + main/fopen-wrappers.c: + This url symbol was a bit too generic. Change it to php_url instead. + It was clashing with a similar typedef in the UdmSearch integration I am + working on. + +2000-07-29 Jani Taskinen + + * ext/imap/php_imap.c: + - Fixed bug in imap_compose_mail() which caused crashes. + +2000-07-29 Thies C. Arntzen + + * ext/standard/image.c: + - Fix reading of IPTC via GetImageInfo() for certain JPEG files. + +2000-07-29 Rasmus Lerdorf + + * INSTALL: + Add a couple of notes to the INSTALL file to hopefully cut down on a + couple of frequently asked questions. + +2000-07-29 Zeev Suraski + + * sapi/cgi/cgi_main.c + NEWS + ext/standard/output.c + ext/standard/php_output.h + main/main.c + sapi/apache/php_apache.c + sapi/apache/sapi_apache.c: + Made ob_start() and friends reentrant. It's now possible to implement this + long-requested functionality, now that output buffering is re-entrant: + + function eval_ret($code) + { + ob_start(); + eval($code); + $retval = ob_get_contents(); + ob_end_clean(); + return $retval; + } + + * main/fopen-wrappers.c + main/main.c + main/php_main.h + main/php_virtual_cwd.c + win32/php4dll.dsp: - Update .dsp's + - Make non ZTS Win32 build again + +2000-07-29 Jouni Ahto + + * ext/pgsql/pgsql.c: + Fix #5817 and really, really check what gets passed further... + + * ext/pgsql/Makefile.in: + Removed an extra tab, it caused problems for Digital Unix' poor native make... + + * ext/pgsql/config.m4 + ext/pgsql/pgsql.c + ext/pgsql/php_pgsql.h: + This should fix #5826. + +2000-07-29 Jani Taskinen + + * NEWS: Just cleaning up. + 2000-07-28 Jani Taskinen * ext/ldap/ldap.c: -- 2.50.1