aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xphpBB/install/index.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php
index b7e06a2d96..c6aa392f0f 100755
--- a/phpBB/install/index.php
+++ b/phpBB/install/index.php
@@ -16,9 +16,8 @@ define('IN_INSTALL', true);
$phpbb_root_path = './../';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
-// Error reporting level and runtime escaping
-//error_reporting(E_ERROR | E_WARNING | E_PARSE);
-error_reporting(E_ALL);
+// Report all errors, except notices
+error_reporting(E_ALL ^ E_NOTICE);
/*
* Remove variables created by register_globals from the global scope