diff options
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index f3cb791438..03d9f5cc26 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -1455,11 +1455,10 @@ function msg_handler($errno, $msg_text, $errfile, $errline) $msg_text = (!empty($user->lang[$msg_text])) ? $user->lang[$msg_text] : $msg_text; $msg_title = (!isset($msg_title)) ? $user->lang['INFORMATION'] : ((!empty($user->lang[$msg_title])) ? $user->lang[$msg_title] : $msg_title); $display_header = (!isset($display_header)) ? false : (bool) $display_header; - $show_prev_info = (!isset($show_prev_info)) ? true : (bool) $show_prev_info; if (defined('IN_ADMIN') && !empty($user->data['session_admin'])) { - adm_page_message($msg_title, $msg_text, $display_header, $show_prev_info); + adm_page_message($msg_title, $msg_text, $display_header); adm_page_footer(); } else |