From 43a309ce2b952ac2578c1a392376f27cb10b8cfd Mon Sep 17 00:00:00 2001 From: Cesar G Date: Mon, 11 Aug 2014 00:34:12 +0200 Subject: [PATCH] [ticket/12967] Fix undefined variable phpbb_dispatcher error. PHPBB3-12967 --- phpBB/includes/mcp/mcp_queue.php | 1 + 1 file changed, 1 insertion(+) diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index 54b31c642a..b7e47163a6 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -37,6 +37,7 @@ class mcp_queue { global $auth, $db, $user, $template, $cache, $request; global $config, $phpbb_root_path, $phpEx, $action, $phpbb_container; + global $phpbb_dispatcher; include_once($phpbb_root_path . 'includes/functions_posting.' . $phpEx);