From: Date: Thu, 21 Sep 2000 01:09:30 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: php-4.0.3RC1~76 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=71931b05f016e36ab02190e4ef79aaac14c73e96;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index ca9d4fd60a..a2012d3bb1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,89 @@ +2000-09-20 brianlmoon + + * ext/mysql/php_mysql.c + ext/mysql/php_mysql.h: + added mysql_fetch_assoc. Acts like mysql_fetch_array used to. + +2000-09-20 Jani Taskinen + + * ext/curl/.cvsignore: This was missing.. + +2000-09-20 Chuck Hagenbuch + + * pear/DB/common.php: + declare var $fetchmode in DB_Common to avoid lots and lots of errors. + +2000-09-20 Sascha Schumann + + * ext/standard/url_scanner_ex.c + ext/standard/url_scanner_ex.re: + Cleanup SCANNER_DEBUG and don't NUL terminate work buffer + + * ext/standard/url_scanner_ex.c + ext/standard/url_scanner_ex.re: + Use emalloc and friends. Since we reuse all buffers, this does not affect + the speed. + + The smart_str_* functions don't NUL terminate strings anymore. We can + rely on the length of the strings completely. + + * ext/standard/url_scanner_ex.c + ext/standard/url_scanner_ex.h + ext/standard/url_scanner_ex.re: + Remove this pseudo optimization from the previous rewrite. + + Since we leave/enter the loop more often, the cost of maintaining + c_arg/c_val is higher than simply copying the tag/arg string once. + + * ext/standard/url_scanner_ex.c + ext/standard/url_scanner_ex.h + ext/standard/url_scanner_ex.re: + Another 5%-10% speed increase achieved by + + - making ctx->val read-only + - adding a special appendc function for appending single characters + +2000-09-20 Joey Smith + + * ext/sybase_ct/php_sybase_ct.c: + le_link and le_plink are no longer part of the sybase_globals. + +2000-09-20 Sascha Schumann + + * ext/standard/url_scanner_ex.c + ext/standard/url_scanner_ex.re: + Add support for URLs containing NAME info (for scrolling; #name). + + * ext/session/session.c: Deactivate E_NOTICE message on gc + + * ext/standard/url_scanner_ex.h: + Rename prototype to currently used name. These stupid names will go away once + the transition periode ends. + + * ext/session/session.c: s/url_scanner.h/url_scanner_ex.h/ + + * ext/session/session.c: Make the new url scanner the default. + + If there are any problems (especially with characters > 127), let me know. + + * ext/standard/url_scanner_ex.c + ext/standard/url_scanner_ex.h + ext/standard/url_scanner_ex.re: + 2nd Rewrite of the main scanner engine. This version is cleaner and faster. + + It handles the following tags currently: + + + + + + + + Additional ones can be added within seconds. + + The support for HTML forms has been significantly improved. The scanner + will now add proper Hidden Fields for the Session ID. + 2000-09-19 Jani Taskinen * acinclude.m4: This fix prevents adding an empty -l to LIBS