]> git.mxchange.org Git - friendica.git/commitdiff
Just one more place where we had forgotten to use the bbcode function for the about...
authorMichael Vogel <icarus@dabo.de>
Mon, 14 Dec 2015 23:11:19 +0000 (00:11 +0100)
committerMichael Vogel <icarus@dabo.de>
Mon, 14 Dec 2015 23:11:19 +0000 (00:11 +0100)
include/items.php

index 2ac494ba275ce4569838ecd548fd1a1746beff8f..eff13668992a6c47a03ae9a021ae643b23c3a326 100644 (file)
@@ -4402,7 +4402,7 @@ function atom_author($tag,$name,$uri,$h,$w,$photo,$geo) {
 
                        $o .= "\t<poco:preferredUsername>".xmlify($r[0]["nick"])."</poco:preferredUsername>\r\n";
                        $o .= "\t<poco:displayName>".xmlify($r[0]["name"])."</poco:displayName>\r\n";
-                       $o .= "\t<poco:note>".xmlify($r[0]["about"])."</poco:note>\r\n";
+                       $o .= "\t<poco:note>".xmlify(bbcode($r[0]["about"]))."</poco:note>\r\n";
                        $o .= "\t<poco:address>\r\n";
                        $o .= "\t\t<poco:formatted>".xmlify($location)."</poco:formatted>\r\n";
                        $o .= "\t</poco:address>\r\n";