diff options
author | Nils Adermann <naderman@naderman.de> | 2013-09-16 04:45:58 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2013-09-16 04:45:58 +0200 |
commit | d626ebaf1e3d993ba3474c8dd403b18d5faf8863 (patch) | |
tree | 5fd13d2e53ad48a228164a85aa1a7978727b262e /phpBB/phpbb/notification | |
parent | ccbb070652a188fd3b2354781d57af8847015eee (diff) | |
download | forums-d626ebaf1e3d993ba3474c8dd403b18d5faf8863.tar forums-d626ebaf1e3d993ba3474c8dd403b18d5faf8863.tar.gz forums-d626ebaf1e3d993ba3474c8dd403b18d5faf8863.tar.bz2 forums-d626ebaf1e3d993ba3474c8dd403b18d5faf8863.tar.xz forums-d626ebaf1e3d993ba3474c8dd403b18d5faf8863.zip |
[ticket/11700] Fix a few more comments
PHPBB3-11700
Diffstat (limited to 'phpBB/phpbb/notification')
-rw-r--r-- | phpBB/phpbb/notification/manager.php | 2 | ||||
-rw-r--r-- | phpBB/phpbb/notification/type/quote.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/notification/manager.php b/phpBB/phpbb/notification/manager.php index a865f7d6b9..1c95b928cf 100644 --- a/phpBB/phpbb/notification/manager.php +++ b/phpBB/phpbb/notification/manager.php @@ -380,7 +380,7 @@ class manager unset($notify_users[ANONYMOUS]); // Make sure not to send new \notifications to users who've already been notified about this item - // This may happen when an item was added, but now new \users are able to see the item + // This may happen when an item was added, but now new users are able to see the item $sql = 'SELECT n.user_id FROM ' . $this->notifications_table . ' n, ' . $this->notification_types_table . ' nt WHERE n.notification_type_id = ' . (int) $notification_type_id . ' diff --git a/phpBB/phpbb/notification/type/quote.php b/phpBB/phpbb/notification/type/quote.php index d59f7caf8e..b33766023e 100644 --- a/phpBB/phpbb/notification/type/quote.php +++ b/phpBB/phpbb/notification/type/quote.php @@ -168,7 +168,7 @@ class quote extends \phpbb\notification\type\post } $this->db->sql_freeresult($result); - // Find the new \users to notify + // Find the new users to notify $notifications = $this->find_users_for_notification($post); // Find the notifications we must delete |