From: Hypolite Petovan Date: Mon, 24 Feb 2020 01:36:04 +0000 (-0500) Subject: Add about field conversion to HTML in Protocol\ActivityPub\Transmitter X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c147446c9359eb3e4d3439ecf06bad4723e629bc;p=friendica.git Add about field conversion to HTML in Protocol\ActivityPub\Transmitter --- diff --git a/src/Protocol/ActivityPub/Transmitter.php b/src/Protocol/ActivityPub/Transmitter.php index 38f1022942..b371c7e59d 100644 --- a/src/Protocol/ActivityPub/Transmitter.php +++ b/src/Protocol/ActivityPub/Transmitter.php @@ -264,7 +264,7 @@ class Transmitter $data['name'] = $contact['name']; $data['vcard:hasAddress'] = ['@type' => 'vcard:Home', 'vcard:country-name' => $profile['country-name'], 'vcard:region' => $profile['region'], 'vcard:locality' => $profile['locality']]; - $data['summary'] = $contact['about']; + $data['summary'] = BBCode::convert($contact['about'], false, 9); $data['url'] = $contact['url']; $data['manuallyApprovesFollowers'] = in_array($user['page-flags'], [User::PAGE_FLAGS_NORMAL, User::PAGE_FLAGS_PRVGROUP]); $data['publicKey'] = ['id' => $contact['url'] . '#main-key',