This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
friendica
/
friendica
mirror of
https://github.com/friendica/friendica.git
Watch
1
Star
2
Fork
1
Code
Issues
Releases
49
Wiki
Activity
Browse Source
Fixed whitespace issue causing trueish results in templates.
For example: profiles would show labels with no content.
pull/1127/head
Beanow
6 years ago
parent
a7302daf96
commit
2fe79c564b
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
include/text.php
+ 1
- 1
include/text.php
View File
@ -1503,7 +1503,7 @@ function prepare_text($text) {
else
$s
=
smilies
(
bbcode
(
$text
));
return
$s
;
return
trim
(
$s
)
;
}}
Write
Preview
Loading…
Cancel
Save