mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-12 22:38:52 +00:00
[ticket/10684] Remove isset() for $sql_ignore_users update
PHPBB3-10684
This commit is contained in:
parent
ee6783109a
commit
f563647e4b
1 changed files with 1 additions and 4 deletions
|
@ -1224,13 +1224,10 @@ function user_notification($mode, $subject, $topic_title, $forum_name, $forum_id
|
|||
if (sizeof($notify_rows))
|
||||
{
|
||||
foreach ($notify_rows as $user_id => $row)
|
||||
{
|
||||
if (!isset($sql_ignore_users[$user_id]))
|
||||
{
|
||||
$sql_ignore_users[$user_id] = $user_id;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$sql = 'SELECT u.user_id, u.username, u.user_email, u.user_lang, u.user_notify_type, u.user_jabber
|
||||
FROM ' . FORUMS_WATCH_TABLE . ' fw, ' . USERS_TABLE . " u
|
||||
|
|
Loading…
Add table
Reference in a new issue