This will 2 things:
1) The first change prevents "expensive" code in HTML::toBBcode() to be executed just for an empty string which makes no sense. 2) The above change was maybe flawed as $apcontact['about'] would have never been created, not even empty which could have side effects Thanks to @annando to make me rethink this part of code.
This commit is contained in:
parent
7814ba4fc4
commit
f2b7326650
|
@ -242,9 +242,7 @@ class APContact
|
|||
}
|
||||
|
||||
$aboutHtml = JsonLD::fetchElement($compacted, 'as:summary', '@value');
|
||||
if ($aboutHtml != "") {
|
||||
$apcontact['about'] = HTML::toBBCode($aboutHtml);
|
||||
}
|
||||
$apcontact['about'] = (!empty($aboutHtml) ? HTML::toBBCode($aboutHtml) : '');
|
||||
|
||||
$ims = JsonLD::fetchElementArray($compacted, 'vcard:hasInstantMessage');
|
||||
|
||||
|
|
Loading…
Reference in a new issue