mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/11744] Cast to int
PHPBB3-11744
This commit is contained in:
@@ -82,7 +82,7 @@ class phpbb_notification_type_group_request extends phpbb_notification_type_base
|
||||
$user_ids = array();
|
||||
while ($row = $this->db->sql_fetchrow($result))
|
||||
{
|
||||
$user_ids[] = $row['user_id'];
|
||||
$user_ids[] = (int) $row['user_id'];
|
||||
}
|
||||
$this->db->sql_freeresult($result);
|
||||
|
||||
|
Reference in New Issue
Block a user