diff options
Diffstat (limited to 'phpBB/common.php')
| -rw-r--r-- | phpBB/common.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/common.php b/phpBB/common.php index c730862e07..0e65c330ce 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -24,6 +24,9 @@ if (!defined('IN_PHPBB')) die('Hacking attempt'); } +$starttime = explode(' ', microtime()); +$starttime = $starttime[1] + $starttime[0]; + error_reporting(E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables //error_reporting(E_ALL); set_magic_quotes_runtime(0); |
