From: Ilia Alshanetsky Date: Mon, 11 Sep 2006 23:11:18 +0000 (+0000) Subject: Typo fix from Steph X-Git-Tag: php-5.2.0RC4~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb9a9f2b98940537d96c2e601719c4c1632e21cb;p=php Typo fix from Steph Added note about CLI and INI search path --- diff --git a/README.UPDATE_5_2 b/README.UPDATE_5_2 index c7b83eb040..434cdad3ed 100644 --- a/README.UPDATE_5_2 +++ b/README.UPDATE_5_2 @@ -37,7 +37,7 @@ Items from the NEWS file explained of PHP. Errors of this type are logged as 'Catchable fatal error'. -- Changed E_ALL error reporting mode to includes E_RECOVERABLE_ERROR. (Marcus) +- Changed E_ALL error reporting mode to include E_RECOVERABLE_ERROR. (Marcus) This change means that the value of the E_ALL error_reporting constant is now 6143, where its previous value was 2047. If you are setting the error_reporting @@ -160,3 +160,11 @@ Items from the NEWS file explained variable be accessed in write mode. To work around this, you should either cast the returned value from __get() to an array, or use SPL's ArrayObject instead of an array. + +- CLI SAPI no longer checks cwd for php.ini or the php-cli.ini file (Edin) + + In PHP 5.1.X an undocumented feature was added that made the CLI binary + check the current directory for PHP configuration file possibly leading to + unpredictable behavior due to an un-expected configuration file being + read. This functionality was removed in 5.2 and PHP will no longer search + CWD for the presence of the php.ini or the php-cli.ini files.