aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/notification/type/post.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-04-16 19:47:37 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-04-25 11:52:28 +0200
commit465aa9c346f3d710d6d7e86de1667719d63364a7 (patch)
treea555231dc009eb4a679355cfe1fbc967623642da /phpBB/phpbb/notification/type/post.php
parent16329c7ad90299a620855252902b3ef4d6959019 (diff)
downloadforums-465aa9c346f3d710d6d7e86de1667719d63364a7.tar
forums-465aa9c346f3d710d6d7e86de1667719d63364a7.tar.gz
forums-465aa9c346f3d710d6d7e86de1667719d63364a7.tar.bz2
forums-465aa9c346f3d710d6d7e86de1667719d63364a7.tar.xz
forums-465aa9c346f3d710d6d7e86de1667719d63364a7.zip
[ticket/12371] Fix language in comment
PHPBB3-12371
Diffstat (limited to 'phpBB/phpbb/notification/type/post.php')
-rw-r--r--phpBB/phpbb/notification/type/post.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/phpBB/phpbb/notification/type/post.php b/phpBB/phpbb/notification/type/post.php
index 826be0c992..bb5f3dfc5e 100644
--- a/phpBB/phpbb/notification/type/post.php
+++ b/phpBB/phpbb/notification/type/post.php
@@ -433,9 +433,8 @@ class post extends \phpbb\notification\type\base
$serialized_data = serialize($this->get_data(false));
- // If the data is longer then 4000 characters, it would cause a SQL error
- // so we just don't add the username to the list, when this would be the
- // case.
+ // If the data is longer then 4000 characters, it would cause a SQL error.
+ // We don't add the username to the list if this is the case.
if (utf8_strlen($serialized_data) >= 4000)
{
return array();