diff options
author | Mark Shaw <mark.shaw@mail.utoronto.ca> | 2016-06-17 11:50:32 -0400 |
---|---|---|
committer | Mark Shaw <mark.shaw@mail.utoronto.ca> | 2016-06-17 11:50:32 -0400 |
commit | 4d50a1daa589e2eedbf2d3ddfc07a6ac85c101cc (patch) | |
tree | d245b900eeaaa41f3a91f64c24e1542b390a697b /phpBB/includes/mcp/mcp_queue.php | |
parent | 6a73188e6a194d268958251c184cd9a29b9f02ef (diff) | |
download | forums-4d50a1daa589e2eedbf2d3ddfc07a6ac85c101cc.tar forums-4d50a1daa589e2eedbf2d3ddfc07a6ac85c101cc.tar.gz forums-4d50a1daa589e2eedbf2d3ddfc07a6ac85c101cc.tar.bz2 forums-4d50a1daa589e2eedbf2d3ddfc07a6ac85c101cc.tar.xz forums-4d50a1daa589e2eedbf2d3ddfc07a6ac85c101cc.zip |
[ticket/14680] Fix wrong function name being checked in mcp_queue.
PHPBB3-14680
Diffstat (limited to 'phpBB/includes/mcp/mcp_queue.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_queue.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index bf93593c74..1ccced7a2f 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -104,7 +104,7 @@ class mcp_queue if (!empty($topic_id_list) && $mode == 'deleted_topics') { - if (!function_exists('mcp_delete_topics')) + if (!function_exists('mcp_delete_topic')) { global $phpbb_root_path, $phpEx; include($phpbb_root_path . 'includes/mcp/mcp_main.' . $phpEx); |