diff options
author | Nils Adermann <naderman@naderman.de> | 2013-09-16 05:00:18 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2013-09-16 05:00:18 +0200 |
commit | 390dc86344c23b658085bae4a719399e5eb579f0 (patch) | |
tree | 3c915606ea24a149ef78c21f72663e4ceae60661 /phpBB/phpbb/notification | |
parent | ee1c15fe7e1d0c823026d2b63ceab276eb878ab0 (diff) | |
download | forums-390dc86344c23b658085bae4a719399e5eb579f0.tar forums-390dc86344c23b658085bae4a719399e5eb579f0.tar.gz forums-390dc86344c23b658085bae4a719399e5eb579f0.tar.bz2 forums-390dc86344c23b658085bae4a719399e5eb579f0.tar.xz forums-390dc86344c23b658085bae4a719399e5eb579f0.zip |
[ticket/11700] And some last comments with backslashes
PHPBB3-11700
Diffstat (limited to 'phpBB/phpbb/notification')
-rw-r--r-- | phpBB/phpbb/notification/manager.php | 2 | ||||
-rw-r--r-- | phpBB/phpbb/notification/type/base.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/notification/manager.php b/phpBB/phpbb/notification/manager.php index 1c95b928cf..c42c84fb1f 100644 --- a/phpBB/phpbb/notification/manager.php +++ b/phpBB/phpbb/notification/manager.php @@ -379,7 +379,7 @@ class manager // Never send notifications to the anonymous user! unset($notify_users[ANONYMOUS]); - // Make sure not to send new \notifications to users who've already been notified about this item + // 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 $sql = 'SELECT n.user_id FROM ' . $this->notifications_table . ' n, ' . $this->notification_types_table . ' nt diff --git a/phpBB/phpbb/notification/type/base.php b/phpBB/phpbb/notification/type/base.php index cc0355771b..3c44468bb8 100644 --- a/phpBB/phpbb/notification/type/base.php +++ b/phpBB/phpbb/notification/type/base.php @@ -145,7 +145,7 @@ abstract class base implements \phpbb\notification\type\type_interface */ public function set_initial_data($data = array()) { - // The row from the database (unless this is a new \notification we're going to add) + // The row from the database (unless this is a new notification we're going to add) $this->data = $data; $this->data['notification_data'] = (isset($this->data['notification_data'])) ? unserialize($this->data['notification_data']) : array(); } |