aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-05-05 12:28:38 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-05-05 12:28:38 +0000
commit8f765e50a39d79ff23d812fd3a88937f988a75ca (patch)
treeacb2f0b859b7719ed88dbe311777199ad4d63280 /phpBB/common.php
parentb5608afe0331a38c7761558a20337814f43bb162 (diff)
downloadforums-8f765e50a39d79ff23d812fd3a88937f988a75ca.tar
forums-8f765e50a39d79ff23d812fd3a88937f988a75ca.tar.gz
forums-8f765e50a39d79ff23d812fd3a88937f988a75ca.tar.bz2
forums-8f765e50a39d79ff23d812fd3a88937f988a75ca.tar.xz
forums-8f765e50a39d79ff23d812fd3a88937f988a75ca.zip
- put the error reporting check into another location (since we do want to display our notices. ;))
- default error reporting in common.php - E_ALL being set if DEBUG_EXTRA defined git-svn-id: file:///svn/phpbb/trunk@5882 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index fd3d630740..88577c6971 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -23,8 +23,7 @@ if (!defined('IN_PHPBB'))
$starttime = explode(' ', microtime());
$starttime = $starttime[1] + $starttime[0];
-// error_reporting(E_ERROR | E_WARNING | E_PARSE);
-error_reporting(E_ALL);
+error_reporting(E_ERROR | E_WARNING | E_PARSE);
/*
* Remove variables created by register_globals from the global scope