mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/12371] Fix language in comment
PHPBB3-12371
This commit is contained in:
parent
16329c7ad9
commit
465aa9c346
1 changed files with 2 additions and 3 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue