]> git.mxchange.org Git - friendica.git/commitdiff
Fix error / "about" is now converted to BBCode
authorMichael <heluecht@pirati.ca>
Wed, 3 Oct 2018 19:00:32 +0000 (19:00 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 3 Oct 2018 19:00:32 +0000 (19:00 +0000)
src/Model/APContact.php
src/Protocol/ActivityPub/Transmitter.php

index efd6ed0e9dc60c4216382f7415743dca360331a6..ce66ec4c6e651e531b452f88df51923307ebf6fc 100644 (file)
@@ -12,6 +12,7 @@ use Friendica\Protocol\ActivityPub;
 use Friendica\Util\Network;
 use Friendica\Util\JsonLD;
 use Friendica\Util\DateTimeFormat;
+use Friendica\Content\Text\HTML;
 
 require_once 'boot.php';
 
@@ -114,7 +115,7 @@ class APContact extends BaseObject
                $apcontact['sharedinbox'] = JsonLD::fetchElement($data, 'endpoints', 'sharedInbox');
                $apcontact['nick'] = defaults($data, 'preferredUsername', null);
                $apcontact['name'] = defaults($data, 'name', $apcontact['nick']);
-               $apcontact['about'] = defaults($data, 'summary', '');
+               $apcontact['about'] = HTML::toBBCode(defaults($data, 'summary', ''));
                $apcontact['photo'] = JsonLD::fetchElement($data, 'icon', 'url');
                $apcontact['alias'] = JsonLD::fetchElement($data, 'url', 'href');
 
index 76c233fd5ecc09e3b20f6cda61d3894e5e79237e..b92148e1ff14584e6f96277644c3d90c051fb1ee 100644 (file)
@@ -700,7 +700,7 @@ class Transmitter
         *
         * @return object array
         */
-       private static function createNote($item)
+       public static function createNote($item)
        {
                if (!empty($item['title'])) {
                        $type = 'Article';