aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-05-04 15:49:22 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-05-04 15:49:22 +0000
commite11da225e02ae4aa353fe27d774186ae9e513648 (patch)
tree2667ecb281b12adf3584d9913d11b693aba6ece8 /phpBB/common.php
parentb131931edbb9243509450302ddac27e7e310ab29 (diff)
downloadforums-e11da225e02ae4aa353fe27d774186ae9e513648.tar
forums-e11da225e02ae4aa353fe27d774186ae9e513648.tar.gz
forums-e11da225e02ae4aa353fe27d774186ae9e513648.tar.bz2
forums-e11da225e02ae4aa353fe27d774186ae9e513648.tar.xz
forums-e11da225e02ae4aa353fe27d774186ae9e513648.zip
- slightly adjusted the DEBUG/DEBUG_EXTRA requirements
- changed error_reporting to E_ALL - our error handler now takes the error_reporting value into account allowing us to correctly supress notices git-svn-id: file:///svn/phpbb/trunk@5877 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index 88577c6971..efb86f12d6 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -11,7 +11,7 @@
// Remove the following line to enable this software, be sure you note what it
// says before continuing
-die('This software is unsupported in any and all respects. By removing this notice (found in common.php) you are noting your acceptance of this. Do not ask support questions of any kind for this release at either area51.phpbb.com or www.phpbb.com. Support for this version will appear when the beta cycle begins');
+//die('This software is unsupported in any and all respects. By removing this notice (found in common.php) you are noting your acceptance of this. Do not ask support questions of any kind for this release at either area51.phpbb.com or www.phpbb.com. Support for this version will appear when the beta cycle begins');
/**
*/
@@ -23,7 +23,8 @@ if (!defined('IN_PHPBB'))
$starttime = explode(' ', microtime());
$starttime = $starttime[1] + $starttime[0];
-error_reporting(E_ERROR | E_WARNING | E_PARSE);
+// error_reporting(E_ERROR | E_WARNING | E_PARSE);
+error_reporting(E_ALL);
/*
* Remove variables created by register_globals from the global scope