aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-06-19 18:38:23 +0200
committerMarc Alexander <admin@m-a-styles.de>2016-06-19 18:38:23 +0200
commitcc628f06b2e70b444ceab34bf8b904867dc2c128 (patch)
tree19457e9011f5fe1ee36af78973580baaac923796
parenta460aec68cf0927b0b145fd19a62d675369dcda9 (diff)
parent4d50a1daa589e2eedbf2d3ddfc07a6ac85c101cc (diff)
downloadforums-cc628f06b2e70b444ceab34bf8b904867dc2c128.tar
forums-cc628f06b2e70b444ceab34bf8b904867dc2c128.tar.gz
forums-cc628f06b2e70b444ceab34bf8b904867dc2c128.tar.bz2
forums-cc628f06b2e70b444ceab34bf8b904867dc2c128.tar.xz
forums-cc628f06b2e70b444ceab34bf8b904867dc2c128.zip
Merge pull request #4356 from markshawtoronto/ticket/14680
[ticket/14680] Fix wrong function name being checked in mcp_queue.
-rw-r--r--phpBB/includes/mcp/mcp_queue.php2
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);