aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/notification
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2014-08-09 12:49:32 +0200
committerMarc Alexander <admin@m-a-styles.de>2014-08-09 12:49:32 +0200
commit0de1d65804ef8b68a189703b78381ed2787f6484 (patch)
tree112e32d79bdd3e51e6f5376404a6f30b80e9211c /phpBB/phpbb/notification
parent6a13f983a4a65483f361a2e3e799199bdd9b3ae3 (diff)
downloadforums-0de1d65804ef8b68a189703b78381ed2787f6484.tar
forums-0de1d65804ef8b68a189703b78381ed2787f6484.tar.gz
forums-0de1d65804ef8b68a189703b78381ed2787f6484.tar.bz2
forums-0de1d65804ef8b68a189703b78381ed2787f6484.tar.xz
forums-0de1d65804ef8b68a189703b78381ed2787f6484.zip
[ticket/12742] Remove unneeded sort of users
It doesn't matter which user will get the notification first so we shouldn't sort the users array. PHPBB3-12742
Diffstat (limited to 'phpBB/phpbb/notification')
-rw-r--r--phpBB/phpbb/notification/type/base.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/phpBB/phpbb/notification/type/base.php b/phpBB/phpbb/notification/type/base.php
index 48b368f7f9..895127f831 100644
--- a/phpBB/phpbb/notification/type/base.php
+++ b/phpBB/phpbb/notification/type/base.php
@@ -550,7 +550,6 @@ abstract class base implements \phpbb\notification\type\type_interface
}
$users = array_unique($users);
- sort($users);
$auth_read = $this->auth->acl_get_list($users, 'f_read', $forum_id);