Fixed whitespace issue causing trueish results in templates.

For example: profiles would show labels with no content.
This commit is contained in:
Beanow 2014-09-07 15:48:44 +02:00
parent a7302daf96
commit 2fe79c564b
1 changed files with 1 additions and 1 deletions

View File

@ -1503,7 +1503,7 @@ function prepare_text($text) {
else
$s = smilies(bbcode($text));
return $s;
return trim($s);
}}