mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-06 22:45:02 +02:00
[ticket/12371] Fix language in comment
PHPBB3-12371
This commit is contained in:
parent
16329c7ad9
commit
465aa9c346
@ -433,9 +433,8 @@ class post extends \phpbb\notification\type\base
|
|||||||
|
|
||||||
$serialized_data = serialize($this->get_data(false));
|
$serialized_data = serialize($this->get_data(false));
|
||||||
|
|
||||||
// If the data is longer then 4000 characters, it would cause a SQL error
|
// 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
|
// We don't add the username to the list if this is the case.
|
||||||
// case.
|
|
||||||
if (utf8_strlen($serialized_data) >= 4000)
|
if (utf8_strlen($serialized_data) >= 4000)
|
||||||
{
|
{
|
||||||
return array();
|
return array();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user