1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

some small bugs fixed...

git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@4092 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2003-06-06 18:02:15 +00:00
parent 9b1f0ed388
commit 722529044d
4 changed files with 6 additions and 6 deletions

View File

@@ -601,9 +601,9 @@ function user_notification($mode, &$post_data, &$topic_title, &$forum_id, &$topi
$user_id_sql = '';
while ($row = $db->sql_fetchrow($result))
{
if (isset($row['ban_userid']))
if (isset($row['ban_userid']) && !empty($row['ban_userid']))
{
$user_id_sql = ', ' . $row['ban_userid'];
$user_id_sql .= ', ' . $row['ban_userid'];
}
}