diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-04-01 00:06:11 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-04-01 00:06:11 +0000 |
commit | 5231006c03848f7e35ef53b0548a4ed5b5732a5e (patch) | |
tree | 1dda392cb8077f61261bc9e0ace9e6359d63376d /phpBB/includes/functions.php | |
parent | 3257af80f0f510c11b4d7370bebf9c580a524d49 (diff) | |
download | forums-5231006c03848f7e35ef53b0548a4ed5b5732a5e.tar forums-5231006c03848f7e35ef53b0548a4ed5b5732a5e.tar.gz forums-5231006c03848f7e35ef53b0548a4ed5b5732a5e.tar.bz2 forums-5231006c03848f7e35ef53b0548a4ed5b5732a5e.tar.xz forums-5231006c03848f7e35ef53b0548a4ed5b5732a5e.zip |
Just throwing this in ... dependencies still not complete ... the GUI and storage has caused me to do more "thinking" than I'd anticipated ... comments are welcome on what you see. Note also ALLOW/DENY/INHERIT have become YES/NO/UNSET
git-svn-id: file:///svn/phpbb/trunk@3772 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index a7f3589a87..ac15245922 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -955,7 +955,7 @@ function msg_handler($errno, $msg_text, $errfile, $errline) die("Unable to show notice, \$user class hasn't been instantiated yet.<br />Error triggered in: " . $errfile .":". $errline); } - if (empty($user->session_id)) + if (empty($user->data)) { $user->start(); } @@ -996,6 +996,7 @@ function msg_handler($errno, $msg_text, $errfile, $errline) include($phpbb_root_path . 'includes/page_tail.' . $phpEx); } + exit; break; } } |