From 49a1d845fe4ccb8ce56c5aa9c3a84bc14f87778f Mon Sep 17 00:00:00 2001 From: brunoais Date: Sun, 20 Jul 2014 09:24:26 +0100 Subject: [PATCH] [ticket/12800] Missing $phpbb_dispatcher as a global PHPBB3-12800 --- phpBB/includes/functions_display.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 17bcaa5dc5..2615ff5a3d 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -1063,7 +1063,8 @@ function display_reasons($reason_id = 0) function display_user_activity(&$userdata) { global $auth, $template, $db, $user; - global $phpbb_root_path, $phpEx, $phpbb_container; + global $phpbb_root_path, $phpEx; + global $phpbb_container, $phpbb_dispatcher; // Do not display user activity for users having more than 5000 posts... if ($userdata['user_posts'] > 5000)