aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-08-27 16:32:44 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-08-27 16:32:44 +0000
commit7d7a08eee624ebd75b73028624c74e0793b1425f (patch)
tree052650584343e6dcd698df3ab171d53f6656d246 /phpBB/common.php
parent6225256418c127806f2c3d8a0ca0fe448b74c1c4 (diff)
downloadforums-7d7a08eee624ebd75b73028624c74e0793b1425f.tar
forums-7d7a08eee624ebd75b73028624c74e0793b1425f.tar.gz
forums-7d7a08eee624ebd75b73028624c74e0793b1425f.tar.bz2
forums-7d7a08eee624ebd75b73028624c74e0793b1425f.tar.xz
forums-7d7a08eee624ebd75b73028624c74e0793b1425f.zip
Various bits and pieces ... this isn't really what I wanted M-2 to look like but hum ho
git-svn-id: file:///svn/phpbb/trunk@4441 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php3
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);