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
|
@ -1225,10 +1225,7 @@ function user_notification($mode, $subject, $topic_title, $forum_name, $forum_id
|
||||||
{
|
{
|
||||||
foreach ($notify_rows as $user_id => $row)
|
foreach ($notify_rows as $user_id => $row)
|
||||||
{
|
{
|
||||||
if (!isset($sql_ignore_users[$user_id]))
|
$sql_ignore_users[$user_id] = $user_id;
|
||||||
{
|
|
||||||
$sql_ignore_users[$user_id] = $user_id;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue