From 5231006c03848f7e35ef53b0548a4ed5b5732a5e Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Tue, 1 Apr 2003 00:06:11 +0000 Subject: 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 --- phpBB/includes/functions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'phpBB/includes/functions.php') 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.
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; } } -- cgit v1.2.1