]> granicus.if.org Git - php/commitdiff
ChangeLog update
author <changelog@php.net> <>
Wed, 17 Jul 2002 00:19:37 +0000 (00:19 +0000)
committer <changelog@php.net> <>
Wed, 17 Jul 2002 00:19:37 +0000 (00:19 +0000)
ChangeLog
Zend/ChangeLog

index f04ab41631ed83a795d2c29a5e49bc52a7adc763..efabf2b9b450d7453271f18f481d5eea24bd23df 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,52 @@
+2002-07-16  sniper  <sniper@pb1.pair.com>
+
+    * NEWS: This is the real world..
+
+    * ext/mysql/php_mysql.c: fix protos
+
+2002-07-16  Sascha Schumann  <sas@pb1.pair.com>
+
+    * sapi/thttpd/README
+      ext/ircg/README.txt: refine
+
+2002-07-16  georg  <georg@pb1.pair.com>
+
+    * 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  <jason@pb1.pair.com>
+
+    * 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  <georg@pb1.pair.com>
+
+    * 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  <edink@pb1.pair.com>
 
     * ext/mbstring/mbstring.c: MFH
index 41b5c3fd206c22bb87163770146902d192c35c46..707bfc50afc7ed0008220bee2cde91fc82d0aeb8 100644 (file)
@@ -1,3 +1,21 @@
+2002-07-16  Andi Gutmans  <andi@pb1.pair.com>
+
+    * ZEND_CHANGES: - Before I forget to list it, this was also added.
+
+    * zend_language_scanner.l:
+    - Syntactic sugar - Add "public" as a synonym for "var".
+    - Now we have the three P's.
+    You can do:
+
+    <?
+       class MyClass {
+               public $a;
+               private $b;
+               protected $c;
+       }
+
+    ?>
+
 2002-07-15  derick  <derick@pb1.pair.com>
 
     * zend_operators.c: - MFH of the crap removal