aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-03-25 14:41:31 +0100
committerJoas Schilling <nickvergessen@gmx.de>2013-03-25 15:07:06 +0100
commit1259117d213d9364ec7eaeb637f9a3fd8838e816 (patch)
tree07f9e91b966d84e1dea6353c2ae5cbd3d06ce115
parent499eded88004f0bbae554090939b38e6158c8271 (diff)
downloadforums-1259117d213d9364ec7eaeb637f9a3fd8838e816.tar
forums-1259117d213d9364ec7eaeb637f9a3fd8838e816.tar.gz
forums-1259117d213d9364ec7eaeb637f9a3fd8838e816.tar.bz2
forums-1259117d213d9364ec7eaeb637f9a3fd8838e816.tar.xz
forums-1259117d213d9364ec7eaeb637f9a3fd8838e816.zip
[ticket/11405] Sort $users array in order to prevent issues on postgres
PHPBB3-11405
-rw-r--r--phpBB/includes/notification/type/quote.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/notification/type/quote.php b/phpBB/includes/notification/type/quote.php
index 5453b267c8..e9eb7bea21 100644
--- a/phpBB/includes/notification/type/quote.php
+++ b/phpBB/includes/notification/type/quote.php
@@ -108,6 +108,7 @@ class phpbb_notification_type_quote extends phpbb_notification_type_post
{
return array();
}
+ sort($users);
$auth_read = $this->auth->acl_get_list($users, 'f_read', $post['forum_id']);