1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-22 19:07:27 +01:00

[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
This commit is contained in:
Marc Alexander 2014-08-09 12:49:32 +02:00
parent 6a13f983a4
commit 0de1d65804

View File

@ -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);