From: Michael Vogel Date: Mon, 14 Dec 2015 23:11:19 +0000 (+0100) Subject: Just one more place where we had forgotten to use the bbcode function for the about... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f42a7a3469f02f6786000decbc96bd968db64fa6;p=friendica.git Just one more place where we had forgotten to use the bbcode function for the about text --- diff --git a/include/items.php b/include/items.php index 2ac494ba27..eff1366899 100644 --- a/include/items.php +++ b/include/items.php @@ -4402,7 +4402,7 @@ function atom_author($tag,$name,$uri,$h,$w,$photo,$geo) { $o .= "\t".xmlify($r[0]["nick"])."\r\n"; $o .= "\t".xmlify($r[0]["name"])."\r\n"; - $o .= "\t".xmlify($r[0]["about"])."\r\n"; + $o .= "\t".xmlify(bbcode($r[0]["about"]))."\r\n"; $o .= "\t\r\n"; $o .= "\t\t".xmlify($location)."\r\n"; $o .= "\t\r\n";