mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
missing concat operator ...
git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3258 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -692,7 +692,7 @@ if( !empty($mode) )
|
||||
$user_ids = '';
|
||||
do
|
||||
{
|
||||
$user_ids = (($user_ids != '') ? ', ' : '' ) . $row['user_id'];
|
||||
$user_ids .= (($user_ids != '') ? ', ' : '' ) . $row['user_id'];
|
||||
}
|
||||
while ($row = $db->sql_fetchrow($result));
|
||||
|
||||
@@ -712,7 +712,7 @@ if( !empty($mode) )
|
||||
$user_ids = '';
|
||||
do
|
||||
{
|
||||
$user_ids = (($user_ids != '') ? ', ' : '' ) . $row['user_id'];
|
||||
$user_ids .= (($user_ids != '') ? ', ' : '' ) . $row['user_id'];
|
||||
}
|
||||
while ($row = $db->sql_fetchrow($result2));
|
||||
|
||||
@@ -727,7 +727,6 @@ if( !empty($mode) )
|
||||
}
|
||||
$db->sql_freeresult($result2);
|
||||
|
||||
|
||||
$sql = "DELETE FROM " . FORUMS_TABLE . "
|
||||
WHERE forum_id = $from_id";
|
||||
if( !$result = $db->sql_query($sql) )
|
||||
|
Reference in New Issue
Block a user