]> git.mxchange.org Git - friendica.git/commitdiff
Replacing the non standard "title" with "name"
authorMichael <heluecht@pirati.ca>
Wed, 12 Sep 2018 18:48:18 +0000 (18:48 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 12 Sep 2018 18:48:18 +0000 (18:48 +0000)
src/Protocol/ActivityPub.php

index 8992c525b0dafb303c8b578a8bc77df01c9b5e46..07989621f183854341cb45cdb96c9b2097ad5fd8 100644 (file)
@@ -160,7 +160,7 @@ echo $return_code."\n";
                $data['published'] = DateTimeFormat::utc($item["created"]."+00:00", DateTimeFormat::ATOM);
                $data['updated'] = DateTimeFormat::utc($item["edited"]."+00:00", DateTimeFormat::ATOM);
                $data['attributedTo'] = $item['author-link'];
-               $data['title'] = BBCode::convert($item['title'], false, 7);
+               $data['name'] = BBCode::convert($item['title'], false, 7);
                $data['content'] = BBCode::convert($item['body'], false, 7);
                //$data['summary'] = '';
                //$data['sensitive'] = false;
@@ -588,10 +588,10 @@ echo $return_code."\n";
                $item['context'] = defaults($object, 'context', null);
                $item['conversation'] = defaults($object, 'conversation', null);
                $item['sensitive'] = defaults($object, 'sensitive', null);
-               $item['name'] = defaults($object, 'name', null);
-               $item['title'] = defaults($object, 'title', null);
-               $item['content'] = defaults($object, 'content', null);
+               $item['name'] = defaults($object, 'title', null);
+               $item['name'] = defaults($object, 'name', $item['name']);
                $item['summary'] = defaults($object, 'summary', null);
+               $item['content'] = defaults($object, 'content', null);
                $item['location'] = self::processElement($object, 'location', 'name', 'Place');
                $item['attachments'] = defaults($object, 'attachment', null);
                $item['tags'] = defaults($object, 'tag', null);