Re-enable hide PHP warnings for regular users.

This commit is contained in:
markjcrane 2016-04-29 17:08:23 -06:00
parent 6d92f6774f
commit d3ea04c602
1 changed files with 2 additions and 2 deletions

View File

@ -193,8 +193,8 @@ include "root.php";
$tmp_config .= " //show errors\n";
$tmp_config .= " ini_set('display_errors', '1');\n";
$tmp_config .= " //error_reporting (E_ALL); // Report everything\n";
$tmp_config .= " error_reporting (E_ALL ^ E_NOTICE); // Report everything\n";
$tmp_config .= " //error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING ); //hide notices and warnings";
$tmp_config .= " //error_reporting (E_ALL ^ E_NOTICE); // Report everything\n";
$tmp_config .= " error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING ); //hide notices and warnings";
$tmp_config .= "\n";
$tmp_config .= "?>";