mirror of
https://github.com/friendica/friendica
synced 2024-11-19 21:43:41 +00:00
Fix error / "about" is now converted to BBCode
This commit is contained in:
parent
221e197658
commit
cbfc3d0c28
2 changed files with 3 additions and 2 deletions
|
@ -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');
|
||||
|
||||
|
|
|
@ -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';
|
||||
|
|
Loading…
Reference in a new issue