1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/11700] Fix some more incorrectly changed comments

PHPBB3-11700
This commit is contained in:
Nils Adermann
2013-09-19 15:27:03 +02:00
parent cc6f1e1775
commit 06e7c84235
14 changed files with 15 additions and 15 deletions

View File

@@ -114,7 +114,7 @@ class bookmark extends \phpbb\notification\type\post
$result = $this->db->sql_query($sql);
while ($row = $this->db->sql_fetchrow($result))
{
// Do not create a new \notification
// Do not create a new notification
unset($notify_users[$row['user_id']]);
$notification = $this->notification_manager->get_item_type_class($this->get_type(), $row);

View File

@@ -149,7 +149,7 @@ class post extends \phpbb\notification\type\base
$result = $this->db->sql_query($sql);
while ($row = $this->db->sql_fetchrow($result))
{
// Do not create a new \notification
// Do not create a new notification
unset($notify_users[$row['user_id']]);
$notification = $this->notification_manager->get_item_type_class($this->get_type(), $row);

View File

@@ -133,7 +133,7 @@ class quote extends \phpbb\notification\type\post
$result = $this->db->sql_query($sql);
while ($row = $this->db->sql_fetchrow($result))
{
// Do not create a new \notification
// Do not create a new notification
unset($notify_users[$row['user_id']]);
$notification = $this->notification_manager->get_item_type_class($this->get_type(), $row);

View File

@@ -19,7 +19,7 @@ if (!defined('IN_PHPBB'))
/**
* Topic notifications class
* This class handles notifications for new \topics
* This class handles notifications for new topics
*
* @package notifications
*/