From: <ex...@us...> - 2015-05-27 05:19:32
|
Revision: 7314 http://sourceforge.net/p/web-erp/reponame/7314 Author: exsonqu Date: 2015-05-27 05:19:30 +0000 (Wed, 27 May 2015) Log Message: ----------- 27/05/15 Thumb: Fix error_reporting() bug change && to & in install/index.php. Modified Paths: -------------- trunk/install/index.php Modified: trunk/install/index.php =================================================================== --- trunk/install/index.php 2015-05-26 09:43:57 UTC (rev 7313) +++ trunk/install/index.php 2015-05-27 05:19:30 UTC (rev 7314) @@ -386,7 +386,7 @@ $msg .= "if (\$RootPath == '/' OR \$RootPath == '\\\') {\n"; $msg .= " \$RootPath = '';\n"; $msg .= "}\n"; - $msg .= "error_reporting(E_ALL && ~E_NOTICE && ~E_WARNING);\n"; + $msg .= "error_reporting(E_ALL & ~E_NOTICE & ~E_WARNING);\n"; $msg .= "//Installed companies \n"; foreach ($CompanyList as $k=>$compinfo) { |