From: Date: Sat, 4 Aug 2001 00:11:58 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: PRE_ENGINE2_SPLIT~84 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c6454c83f4d9078ca348fdcdb93ac33c0052b0af;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 524be47cf4..5ee4e31945 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,141 @@ +2001-08-03 Jeroen van Wolffelaar + + * ext/standard/math.c + ext/standard/string.c: + * ext/standard/php_string.h + ext/standard/string.c: Un-revert patch + + * ext/standard/php_string.h + ext/standard/string.c: Reverting last patch, segfaults. + +2001-08-03 Rasmus Lerdorf + + * ext/exif/exif.c: Change from E_ERROR to E_WARNING in the exif extension + +2001-08-03 Jeroen van Wolffelaar + + * ext/standard/math.c: + - New pow() function. It now gives warnings on wrong input, and + returns integer result when possible + - New pow() implementation, which returns an integer when possible, + and warnings on wrong input (jeroen) + + * ext/standard/php_string.h + ext/standard/string.c: + - Added new parameter to [l|r]trim, to specify _what_ to trim + - Added optional second parameter to trim, chop and ltrim. You can + now specify which characters to trim (jeroen) + +2001-08-03 Jon Parise + + * ext/imap/config.m4: + Don't blindly assume -lc-client when linking 'conftest'. + +2001-08-03 Jeroen van Wolffelaar + + * ext/standard/array.c: + - Fix array_sum to switch to float on overflow. Fixes bug#12505 + +2001-08-03 Jon Parise + + * ext/sysvshm/sysvshm.c: Full include paths are preferrable. + + * ext/sysvshm/sysvshm.c: smart_str use requires php_smart_str.h. + +2001-08-03 Thomas V.V.Cox + + * pear/DB/pgsql.php: + added tableInfo() (thanks to Francis Romera ) + + * pear/DB/common.php: Added DB_FETCHMODE_OBJECT support for getAll() + + * pear/DB/common.php: + setFetchmode now accepts a second optional param with the class type + of the row object returned by the DB_FETCHMODE_OBJECT fetchmode. With that + people can easily extend the functionality of a row object. + + * pear/DB.php: + * Added the new fetch row mode: DB_FETCHMODE_OBJECT that returns the columns + of a fetched row as object properties + * Added a new class DB_row (the default type of a fetched row object) + * Updated some phpdocs + +2001-08-03 Sascha Schumann + + * ext/ircg/ircg.c: + Destruct resources appropiately, when associating the connection with + a new fd. + + * ext/standard/php_smart_str.h: Treat trailing zeroes correctly + + * ext/session/session.c + ext/standard/var.c: + Do the nul'ifiying of php_var_serialize's result at the right place + + * ext/session/session.c: Pass on nul'ified data + + * ext/standard/basic_functions.c + ext/standard/basic_functions.h + ext/standard/string.c: Don't copy the strtok parameter + + * ext/standard/fsock.c: + Fix a possible segfault (Thanks to Sebastian for catching it) + + * ext/standard/var.c: NUL-terminate string + + * ext/session/session.c: Add some casts + + * ext/standard/basic_functions.c + ext/standard/basic_functions.h + ext/standard/string.c: + Replace our strtok implementation with a binary-safe one which code + does not cause headaches when reading it. Also happens to be a bit quicker. + + * ext/standard/php_smart_str.h + ext/standard/php_var.h + ext/standard/var.c + ext/sysvshm/sysvshm.c + ext/session/session.c: + Convert serializer to smart_str.. avoids lots of sprintf's and + copying of data. + +2001-08-03 Zeev Suraski + + * main/php_ini.c + sapi/cgi/cgi_main.c + main/main.c + ext/standard/browscap.c: + Get rid of a couple of bogus persist_alloc()'s, and some cleanup + + * ext/com/VARIANT.c: More TSRM stuff + +2001-08-03 Jani Taskinen + + * ext/informix/config.m4 + ext/imap/config.m4 + acinclude.m4: Changed the PHP_ADD_LIBRARY_DEFER() to work when building + standalone extensions. Also improved the checks for SSL and Kerberos in + IMAP extension configure. + + * ext/odbc/php_odbc.h: + These are redefined in the sqltypes.h that comes with unixODBC. PR: #12519 + +2001-08-03 Sebastian Bergmann + + * sapi/apache2filter/sapi_apache2.c: Revert whitespace patch. + +2001-08-03 Jani Taskinen + + * ext/imap/php_imap.h: Add missing header. + +2001-08-03 Alexander Merz + + * pear/File/Find.php: fix PHPDoc + +2001-08-03 Zeev Suraski + + * win32/php4dll.dsp: Fix non-TS build + 2001-08-02 Thomas V.V.Cox * pear/DB/pgsql.php: