aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp/mcp_topic.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-06-23 23:01:52 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-06-23 23:01:52 +0200
commit952b4de231a87c849d654db18bb9c759fdbcb54d (patch)
treece3c5abd6986ce91cca543649259112852eb955e /phpBB/includes/mcp/mcp_topic.php
parent4ac43856f7adad2ed60d82995454f847aaca1842 (diff)
downloadforums-952b4de231a87c849d654db18bb9c759fdbcb54d.tar
forums-952b4de231a87c849d654db18bb9c759fdbcb54d.tar.gz
forums-952b4de231a87c849d654db18bb9c759fdbcb54d.tar.bz2
forums-952b4de231a87c849d654db18bb9c759fdbcb54d.tar.xz
forums-952b4de231a87c849d654db18bb9c759fdbcb54d.zip
[ticket/12612] Prefix check_ids() with phpbb_
PHPBB3-12612
Diffstat (limited to 'phpBB/includes/mcp/mcp_topic.php')
-rw-r--r--phpBB/includes/mcp/mcp_topic.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/mcp/mcp_topic.php b/phpBB/includes/mcp/mcp_topic.php
index 1be11de7f5..1698b080c9 100644
--- a/phpBB/includes/mcp/mcp_topic.php
+++ b/phpBB/includes/mcp/mcp_topic.php
@@ -368,7 +368,7 @@ function split_topic($action, $topic_id, $to_forum_id, $subject)
return;
}
- if (!check_ids($post_id_list, POSTS_TABLE, 'post_id', array('m_split')))
+ if (!phpbb_check_ids($post_id_list, POSTS_TABLE, 'post_id', array('m_split')))
{
return;
}
@@ -619,7 +619,7 @@ function merge_posts($topic_id, $to_topic_id)
return;
}
- if (!check_ids($post_id_list, POSTS_TABLE, 'post_id', array('m_merge')))
+ if (!phpbb_check_ids($post_id_list, POSTS_TABLE, 'post_id', array('m_merge')))
{
return;
}