mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
git-svn-id: file:///svn/phpbb/trunk@7000 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
9300c40900
commit
603227a02f
1 changed files with 29 additions and 12 deletions
|
@ -502,13 +502,21 @@ function delete_topics($where_type, $where_ids, $auto_sync = true, $post_count_s
|
||||||
$approved_topics = 0;
|
$approved_topics = 0;
|
||||||
$forum_ids = $topic_ids = array();
|
$forum_ids = $topic_ids = array();
|
||||||
|
|
||||||
if (is_array($where_ids))
|
if ($where_type === 'range')
|
||||||
{
|
{
|
||||||
$where_ids = array_unique($where_ids);
|
$where_clause = $where_ids;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$where_ids = array($where_ids);
|
if (is_array($where_ids))
|
||||||
|
{
|
||||||
|
$where_ids = array_unique($where_ids);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$where_ids = array($where_ids);
|
||||||
|
}
|
||||||
|
$where_clause = $db->sql_in_set($where_type, $where_ids);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!sizeof($where_ids))
|
if (!sizeof($where_ids))
|
||||||
|
@ -522,7 +530,7 @@ function delete_topics($where_type, $where_ids, $auto_sync = true, $post_count_s
|
||||||
|
|
||||||
$sql = 'SELECT topic_id, forum_id, topic_approved
|
$sql = 'SELECT topic_id, forum_id, topic_approved
|
||||||
FROM ' . TOPICS_TABLE . '
|
FROM ' . TOPICS_TABLE . '
|
||||||
WHERE ' . $db->sql_in_set($where_type, $where_ids);
|
WHERE ' . ;
|
||||||
$result = $db->sql_query($sql);
|
$result = $db->sql_query($sql);
|
||||||
|
|
||||||
while ($row = $db->sql_fetchrow($result))
|
while ($row = $db->sql_fetchrow($result))
|
||||||
|
@ -583,18 +591,27 @@ function delete_posts($where_type, $where_ids, $auto_sync = true, $posted_sync =
|
||||||
{
|
{
|
||||||
global $db, $config, $phpbb_root_path, $phpEx;
|
global $db, $config, $phpbb_root_path, $phpEx;
|
||||||
|
|
||||||
if (is_array($where_ids))
|
if ($where_type === 'range')
|
||||||
{
|
{
|
||||||
$where_ids = array_unique($where_ids);
|
$where_clause = $where_ids;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$where_ids = array($where_ids);
|
if (is_array($where_ids))
|
||||||
}
|
{
|
||||||
|
$where_ids = array_unique($where_ids);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$where_ids = array($where_ids);
|
||||||
|
}
|
||||||
|
|
||||||
if (!sizeof($where_ids))
|
if (!sizeof($where_ids))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$where_clause = $db->sql_in_set($where_type, array_map('intval', $where_ids);
|
||||||
}
|
}
|
||||||
|
|
||||||
$approved_posts = 0;
|
$approved_posts = 0;
|
||||||
|
@ -602,7 +619,7 @@ function delete_posts($where_type, $where_ids, $auto_sync = true, $posted_sync =
|
||||||
|
|
||||||
$sql = 'SELECT post_id, poster_id, post_approved, post_postcount, topic_id, forum_id
|
$sql = 'SELECT post_id, poster_id, post_approved, post_postcount, topic_id, forum_id
|
||||||
FROM ' . POSTS_TABLE . '
|
FROM ' . POSTS_TABLE . '
|
||||||
WHERE ' . $db->sql_in_set($where_type, array_map('intval', $where_ids));
|
WHERE ' . $where_clause);
|
||||||
$result = $db->sql_query($sql);
|
$result = $db->sql_query($sql);
|
||||||
|
|
||||||
while ($row = $db->sql_fetchrow($result))
|
while ($row = $db->sql_fetchrow($result))
|
||||||
|
|
Loading…
Add table
Reference in a new issue