diff options
author | Bart van Bragt <bartvb@users.sourceforge.net> | 2002-11-25 18:32:36 +0000 |
---|---|---|
committer | Bart van Bragt <bartvb@users.sourceforge.net> | 2002-11-25 18:32:36 +0000 |
commit | efad1f2491413b1609577f59a94987492fd6fe76 (patch) | |
tree | 75453ea35848428fec14e4ded96a050db99f8829 /phpBB/includes/functions.php | |
parent | 0f31aa8416729a426dabeb90af7cf3165828dcab (diff) | |
download | forums-efad1f2491413b1609577f59a94987492fd6fe76.tar forums-efad1f2491413b1609577f59a94987492fd6fe76.tar.gz forums-efad1f2491413b1609577f59a94987492fd6fe76.tar.bz2 forums-efad1f2491413b1609577f59a94987492fd6fe76.tar.xz forums-efad1f2491413b1609577f59a94987492fd6fe76.zip |
Made the error handler behave responsibly when $user isn't there yet
git-svn-id: file:///svn/phpbb/trunk@3092 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 2e022b8966..cc321003ca 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -797,6 +797,15 @@ function msg_handler($errno, $msg_text, $errfile, $errline) break; case E_USER_NOTICE: + // 20021125 Bartvb (todo) + // This is a hack just to show something useful. + // $msg_text won't contain anything if $user isn't there yet. + // I ran into this problem when installing without makeing config_cache.php writable + if ( !class_exists($user) ) + { + die("Unable to show notice, \$user class hasn't been instantiated yet.<br />Error triggered in: " . $errfile .":". $errline); + } + if (empty($user->session_id)) { $user->start(); @@ -842,4 +851,4 @@ function msg_handler($errno, $msg_text, $errfile, $errline) } } -?>
\ No newline at end of file +?> |