diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2016-06-19 18:38:23 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2016-06-19 18:38:23 +0200 |
| commit | cc628f06b2e70b444ceab34bf8b904867dc2c128 (patch) | |
| tree | 19457e9011f5fe1ee36af78973580baaac923796 | |
| parent | a460aec68cf0927b0b145fd19a62d675369dcda9 (diff) | |
| parent | 4d50a1daa589e2eedbf2d3ddfc07a6ac85c101cc (diff) | |
| download | forums-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.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); |
