diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-10-05 13:46:52 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-10-05 13:46:52 -0500 |
commit | 54629aa87d3ef6f6fcb8ce8708e85ac039b98fa3 (patch) | |
tree | 2b795b6b9d373947a0a595656bbd96e9eeda7039 | |
parent | 0bab8ff777bcb82361b75441c085ee2e510db5cc (diff) | |
download | forums-54629aa87d3ef6f6fcb8ce8708e85ac039b98fa3.tar forums-54629aa87d3ef6f6fcb8ce8708e85ac039b98fa3.tar.gz forums-54629aa87d3ef6f6fcb8ce8708e85ac039b98fa3.tar.bz2 forums-54629aa87d3ef6f6fcb8ce8708e85ac039b98fa3.tar.xz forums-54629aa87d3ef6f6fcb8ce8708e85ac039b98fa3.zip |
[ticket/11103] Bug fixing
PHPBB3-11103
-rw-r--r-- | phpBB/includes/notification/type/quote.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/notification/type/quote.php b/phpBB/includes/notification/type/quote.php index 48d8f24a25..1eea8f1066 100644 --- a/phpBB/includes/notification/type/quote.php +++ b/phpBB/includes/notification/type/quote.php @@ -168,7 +168,7 @@ class phpbb_notification_type_quote extends phpbb_notification_type_post // marked as read // Add the necessary notifications - $service->add_notifications_for_users(self::get_item_type(), $post, $add_notifications); + $this->notification_manager->add_notifications_for_users(self::get_item_type(), $post, $add_notifications); // Remove the necessary notifications if (!empty($remove_notifications)) |