diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-08-09 17:48:59 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-08-09 17:48:59 +0200 |
commit | 496b804a0f43b04f693f34d53304ff23d1d30d0c (patch) | |
tree | b884a37511e622c92b638a005b9abece03a72e5b /phpBB | |
parent | 57d94b7bb42f5dd963156e28ecbb24d32967aa3f (diff) | |
download | forums-496b804a0f43b04f693f34d53304ff23d1d30d0c.tar forums-496b804a0f43b04f693f34d53304ff23d1d30d0c.tar.gz forums-496b804a0f43b04f693f34d53304ff23d1d30d0c.tar.bz2 forums-496b804a0f43b04f693f34d53304ff23d1d30d0c.tar.xz forums-496b804a0f43b04f693f34d53304ff23d1d30d0c.zip |
[ticket/12742] Add sorting back to bookmark notification list of users
PHPBB3-12742
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/notification/type/bookmark.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/notification/type/bookmark.php b/phpBB/phpbb/notification/type/bookmark.php index d2e2700d2d..21180b3b53 100644 --- a/phpBB/phpbb/notification/type/bookmark.php +++ b/phpBB/phpbb/notification/type/bookmark.php @@ -83,7 +83,7 @@ class bookmark extends \phpbb\notification\type\post } $this->db->sql_freeresult($result); - $notify_users = $this->get_authorised_recipients($users, $post['forum_id'], $options); + $notify_users = $this->get_authorised_recipients($users, $post['forum_id'], $options, true); if (empty($notify_users)) { |