georg           Thu May  5 08:33:56 2005 EDT

  Modified files:              (Branch: PHP_5_0)
    /php-src    NEWS php.ini-dist php.ini-recommended 
  Log:
  MFH: fix for bug #32947
  
  
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1760.2.368&r2=1.1760.2.369&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1760.2.368 php-src/NEWS:1.1760.2.369
--- php-src/NEWS:1.1760.2.368   Wed May  4 07:16:54 2005
+++ php-src/NEWS        Thu May  5 08:33:56 2005
@@ -10,6 +10,7 @@
 - Fixed ext/mysqli to allocate less memory when fetching bound params
   of type (MEDIUM|LONG)BLOB/(MEDIUM|LONG)TEXT. (Andrey)
 - Fixed memory corruption in ImageTTFText() with 64bit systems. (Andrey)
+- Fixed bug #32947 (Incorrect option for mysqli default password). (Georg)
 - Fixed bug #32930 (class extending DOMDocument doesn't clone properly). (Rob)
 - Fixed bug #32852 (Crash with singleton and __destruct when
   zend.ze1_compatibility_mode = On). (Dmitry)
http://cvs.php.net/diff.php/php-src/php.ini-dist?r1=1.215.2.11&r2=1.215.2.12&ty=u
Index: php-src/php.ini-dist
diff -u php-src/php.ini-dist:1.215.2.11 php-src/php.ini-dist:1.215.2.12
--- php-src/php.ini-dist:1.215.2.11     Thu Apr 28 21:37:37 2005
+++ php-src/php.ini-dist        Thu May  5 08:33:56 2005
@@ -720,10 +720,10 @@
 
 ; Default password for mysqli_connect() (doesn't apply in safe mode).
 ; Note that this is generally a *bad* idea to store passwords in this file.
-; *Any* user with PHP access can run 'echo 
get_cfg_var("mysqli.default_password")
+; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
 ; and reveal this password!  And of course, any users with read access to this
 ; file will be able to reveal the password as well.
-mysqli.default_password =
+mysqli.default_pw =
 
 ; Allow or prevent reconnect
 mysqli.reconnect = Off
http://cvs.php.net/diff.php/php-src/php.ini-recommended?r1=1.159.2.11&r2=1.159.2.12&ty=u
Index: php-src/php.ini-recommended
diff -u php-src/php.ini-recommended:1.159.2.11 
php-src/php.ini-recommended:1.159.2.12
--- php-src/php.ini-recommended:1.159.2.11      Thu Apr 28 21:37:37 2005
+++ php-src/php.ini-recommended Thu May  5 08:33:56 2005
@@ -778,10 +778,10 @@
 
 ; Default password for mysqli_connect() (doesn't apply in safe mode).
 ; Note that this is generally a *bad* idea to store passwords in this file.
-; *Any* user with PHP access can run 'echo 
get_cfg_var("mysqli.default_password")
+; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
 ; and reveal this password!  And of course, any users with read access to this
 ; file will be able to reveal the password as well.
-mysqli.default_password =
+mysqli.default_pw =
 
 ; Allow or prevent reconnect
 mysqli.reconnect = Off

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to