diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-09-11 22:01:09 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-09-11 22:01:09 +0200 |
commit | 7b4c5bdd348e89aca7de0cd33b4845c74c79872e (patch) | |
tree | 11300ec339147b9055086d3bc12ca784683f1fd3 | |
parent | 7d6ceb81c1891ad1cfe518b7f2f0cc62968ad21e (diff) | |
download | forums-7b4c5bdd348e89aca7de0cd33b4845c74c79872e.tar forums-7b4c5bdd348e89aca7de0cd33b4845c74c79872e.tar.gz forums-7b4c5bdd348e89aca7de0cd33b4845c74c79872e.tar.bz2 forums-7b4c5bdd348e89aca7de0cd33b4845c74c79872e.tar.xz forums-7b4c5bdd348e89aca7de0cd33b4845c74c79872e.zip |
[ticket/13057] Add $phpbb_dispatcher to the global in mcp/mcp_report.php
PHPBB3-13057
-rw-r--r-- | phpBB/includes/mcp/mcp_reports.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_reports.php b/phpBB/includes/mcp/mcp_reports.php index 247b9d1651..804d48ea97 100644 --- a/phpBB/includes/mcp/mcp_reports.php +++ b/phpBB/includes/mcp/mcp_reports.php @@ -36,7 +36,7 @@ class mcp_reports function main($id, $mode) { global $auth, $db, $user, $template, $cache; - global $config, $phpbb_root_path, $phpEx, $action, $phpbb_container; + global $config, $phpbb_root_path, $phpEx, $action, $phpbb_container, $phpbb_dispatcher; include_once($phpbb_root_path . 'includes/functions_posting.' . $phpEx); |