mirror of
https://github.com/friendica/friendica
synced 2024-11-11 13:02:53 +00:00
Merge branch 'develop' into new_image_presentation
This commit is contained in:
commit
a660718099
2 changed files with 5 additions and 4 deletions
|
@ -672,9 +672,6 @@ class Event
|
||||||
}
|
}
|
||||||
|
|
||||||
$event['author-link'] = Contact::magicLink($event['author-link']);
|
$event['author-link'] = Contact::magicLink($event['author-link']);
|
||||||
$event['summary'] = BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['summary']));
|
|
||||||
$event['desc'] = BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['desc']));
|
|
||||||
$event['location'] = BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['location']));
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'id' => $event['id'],
|
'id' => $event['id'],
|
||||||
|
|
|
@ -451,6 +451,10 @@ class Profile
|
||||||
|
|
||||||
$p['url'] = Contact::magicLinkById($cid, $profile['url']);
|
$p['url'] = Contact::magicLinkById($cid, $profile['url']);
|
||||||
|
|
||||||
|
if (!isset($profile['hidewall'])) {
|
||||||
|
Logger::warning('Missing hidewall key in profile array', ['profile' => $profile, 'callstack' => System::callstack(10)]);
|
||||||
|
}
|
||||||
|
|
||||||
$tpl = Renderer::getMarkupTemplate('profile/vcard.tpl');
|
$tpl = Renderer::getMarkupTemplate('profile/vcard.tpl');
|
||||||
$o .= Renderer::replaceMacros($tpl, [
|
$o .= Renderer::replaceMacros($tpl, [
|
||||||
'$profile' => $p,
|
'$profile' => $p,
|
||||||
|
@ -461,7 +465,7 @@ class Profile
|
||||||
'$unfollow' => DI::l10n()->t('Unfollow'),
|
'$unfollow' => DI::l10n()->t('Unfollow'),
|
||||||
'$unfollow_link' => $unfollow_link,
|
'$unfollow_link' => $unfollow_link,
|
||||||
'$subscribe_feed' => DI::l10n()->t('Atom feed'),
|
'$subscribe_feed' => DI::l10n()->t('Atom feed'),
|
||||||
'$subscribe_feed_link' => $profile['hidewall'] ? '' : $profile['poll'],
|
'$subscribe_feed_link' => $profile['hidewall'] ?? 0 ? '' : $profile['poll'],
|
||||||
'$wallmessage' => DI::l10n()->t('Message'),
|
'$wallmessage' => DI::l10n()->t('Message'),
|
||||||
'$wallmessage_link' => $wallmessage_link,
|
'$wallmessage_link' => $wallmessage_link,
|
||||||
'$account_type' => $account_type,
|
'$account_type' => $account_type,
|
||||||
|
|
Loading…
Reference in a new issue