aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp/mcp_forum.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_forum.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_forum.php')
-rw-r--r--phpBB/includes/mcp/mcp_forum.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/mcp/mcp_forum.php b/phpBB/includes/mcp/mcp_forum.php
index b1f720ad05..0c6acaa908 100644
--- a/phpBB/includes/mcp/mcp_forum.php
+++ b/phpBB/includes/mcp/mcp_forum.php
@@ -328,7 +328,7 @@ function mcp_resync_topics($topic_ids)
trigger_error('NO_TOPIC_SELECTED');
}
- if (!check_ids($topic_ids, TOPICS_TABLE, 'topic_id', array('m_')))
+ if (!phpbb_check_ids($topic_ids, TOPICS_TABLE, 'topic_id', array('m_')))
{
return;
}
@@ -420,7 +420,7 @@ function merge_topics($forum_id, $topic_ids, $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;
}