changelog Tue Jul 16 20:19:16 2002 EDT
Modified files:
/php4 ChangeLog
Log:
ChangeLog update
Index: php4/ChangeLog
diff -u php4/ChangeLog:1.1107 php4/ChangeLog:1.1108
--- php4/ChangeLog:1.1107 Mon Jul 15 20:17:49 2002
+++ php4/ChangeLog Tue Jul 16 20:19:15 2002
@@ -1,3 +1,52 @@
+2002-07-16 sniper <[EMAIL PROTECTED]>
+
+ * NEWS: This is the real world..
+
+ * ext/mysql/php_mysql.c: fix protos
+
+2002-07-16 Sascha Schumann <[EMAIL PROTECTED]>
+
+ * sapi/thttpd/README
+ ext/ircg/README.txt: refine
+
+2002-07-16 georg <[EMAIL PROTECTED]>
+
+ * NEWS: added mysql changes:
+ - php.ini option mysql.connect_timeout
+ - optional parameter client_flags (mysql_connect, mysql_pconnect)
+ - automatic rollback for non commited transactions
+
+2002-07-16 jason <[EMAIL PROTECTED]>
+
+ * ext/standard/basic_functions.c: Prevent reenterant calls to a user tick
+function by flagging the function
+ entry during call.
+
+ This prevents code like the following from infinitely recursing until a
+ crash occurs:
+ <?php
+
+ register_tick_function(a);
+
+ declare(ticks=1) {
+ function a() {
+ print "blah\n";
+ }
+ ;
+ ;
+ ;
+ ;
+ }
+ ?>
+
+2002-07-16 georg <[EMAIL PROTECTED]>
+
+ * ext/mysql/php_mysql.c
+ ext/mysql/php_mysql.h:
+ Added support for php.ini parameter "mysql.connect_timeout"
+
+ * php.ini-dist
+ php.ini-recommended: Added php.ini option "mysql_connection.timeout"
+
2002-07-15 edink <[EMAIL PROTECTED]>
* ext/mbstring/mbstring.c: MFH