1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Fixed entity excerpt function signature misalignment

This commit is contained in:
Dan Brown
2019-04-06 18:47:27 +01:00
parent 7cda9b026e
commit d9cde4123d
3 changed files with 3 additions and 3 deletions

View File

@ -234,7 +234,7 @@ class Entity extends Ownable
if (mb_strlen($text) > $length) {
$text = mb_substr($text, 0, $length-3) . '...';
}
return trim($text);
return trim($text);
}
/**