aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-07-28 21:15:58 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2013-07-28 21:15:58 -0500
commitcbe72ab14b528ebd986dc6fdc1d8b247ebba0df8 (patch)
tree90c1cfe08eba914604c5b6062e9c75d333ab1c9b /phpBB/phpbb
parent28daa60e9e7438e663d6579a0dbbd834dba245b5 (diff)
downloadforums-cbe72ab14b528ebd986dc6fdc1d8b247ebba0df8.tar
forums-cbe72ab14b528ebd986dc6fdc1d8b247ebba0df8.tar.gz
forums-cbe72ab14b528ebd986dc6fdc1d8b247ebba0df8.tar.bz2
forums-cbe72ab14b528ebd986dc6fdc1d8b247ebba0df8.tar.xz
forums-cbe72ab14b528ebd986dc6fdc1d8b247ebba0df8.zip
[ticket/11744] Cast to int
PHPBB3-11744
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);