mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
fix r9602
Authorised by: acydburn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9611 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
5943407cdc
commit
737812dc44
1 changed files with 4 additions and 1 deletions
|
@ -1145,7 +1145,10 @@ function user_unban($mode, $ban)
|
|||
while ($row = $db->sql_fetchrow($result))
|
||||
{
|
||||
$l_unban_list .= (($l_unban_list != '') ? ', ' : '') . $row['unban_info'];
|
||||
$user_ids_ary[] = $row['user_id'];
|
||||
if ($mode == 'user')
|
||||
{
|
||||
$user_ids_ary[] = $row['user_id'];
|
||||
}
|
||||
}
|
||||
$db->sql_freeresult($result);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue