From 4d50a1daa589e2eedbf2d3ddfc07a6ac85c101cc Mon Sep 17 00:00:00 2001 From: Mark Shaw Date: Fri, 17 Jun 2016 11:50:32 -0400 Subject: [PATCH] [ticket/14680] Fix wrong function name being checked in mcp_queue. PHPBB3-14680 --- phpBB/includes/mcp/mcp_queue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);