diff options
author | Cesar G <prototech91@gmail.com> | 2014-08-11 00:34:12 +0200 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-08-11 00:34:12 +0200 |
commit | 43a309ce2b952ac2578c1a392376f27cb10b8cfd (patch) | |
tree | eb7821952f6a9d7e015bb6b3d3a75a6d250d9689 /phpBB/includes/mcp/mcp_queue.php | |
parent | e0d377bca70cff7846ba920a03b717aac1d208a4 (diff) | |
download | forums-43a309ce2b952ac2578c1a392376f27cb10b8cfd.tar forums-43a309ce2b952ac2578c1a392376f27cb10b8cfd.tar.gz forums-43a309ce2b952ac2578c1a392376f27cb10b8cfd.tar.bz2 forums-43a309ce2b952ac2578c1a392376f27cb10b8cfd.tar.xz forums-43a309ce2b952ac2578c1a392376f27cb10b8cfd.zip |
[ticket/12967] Fix undefined variable phpbb_dispatcher error.
PHPBB3-12967
Diffstat (limited to 'phpBB/includes/mcp/mcp_queue.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_queue.php | 1 |
1 files changed, 1 insertions, 0 deletions
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); |