georg Thu May 5 08:22:49 2005 EDT Modified files: /php-src php.ini-dist php.ini-recommended Log: fix for bug #32947 (Incorrect option for mysqli default password) http://cvs.php.net/diff.php/php-src/php.ini-dist?r1=1.229&r2=1.230&ty=u Index: php-src/php.ini-dist diff -u php-src/php.ini-dist:1.229 php-src/php.ini-dist:1.230 --- php-src/php.ini-dist:1.229 Thu Apr 28 21:37:19 2005 +++ php-src/php.ini-dist Thu May 5 08:22:48 2005 @@ -726,10 +726,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.175&r2=1.176&ty=u Index: php-src/php.ini-recommended diff -u php-src/php.ini-recommended:1.175 php-src/php.ini-recommended:1.176 --- php-src/php.ini-recommended:1.175 Thu Apr 28 21:37:19 2005 +++ php-src/php.ini-recommended Thu May 5 08:22:48 2005 @@ -784,10 +784,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