1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

[ticket/12612] Prefix check_ids() with phpbb_

PHPBB3-12612
This commit is contained in:
Joas Schilling
2014-06-23 23:01:52 +02:00
parent 4ac43856f7
commit 952b4de231
6 changed files with 17 additions and 17 deletions

View File

@@ -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;
}