aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/notification/type/group_request.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/notification/type/group_request.php b/phpBB/phpbb/notification/type/group_request.php
index 96015783fb..490b9e16a3 100644
--- a/phpBB/phpbb/notification/type/group_request.php
+++ b/phpBB/phpbb/notification/type/group_request.php
@@ -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);