mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/11744] Cast to int
PHPBB3-11744
This commit is contained in:
parent
28daa60e9e
commit
cbe72ab14b
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ class phpbb_notification_type_group_request extends phpbb_notification_type_base
|
||||||
$user_ids = array();
|
$user_ids = array();
|
||||||
while ($row = $this->db->sql_fetchrow($result))
|
while ($row = $this->db->sql_fetchrow($result))
|
||||||
{
|
{
|
||||||
$user_ids[] = $row['user_id'];
|
$user_ids[] = (int) $row['user_id'];
|
||||||
}
|
}
|
||||||
$this->db->sql_freeresult($result);
|
$this->db->sql_freeresult($result);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue