1
0
Fork 0

Merge pull request #6323 from annando/issue-6316

Issue 6316: Do not double encode / Avoid notice
This commit is contained in:
Hypolite Petovan 2018-12-25 11:26:54 -05:00 committed by GitHub
commit 56d612b2f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -237,7 +237,7 @@ function notifications_content(App $a)
$notif_content[] = Renderer::replaceMacros($tpl, [
'$type' => $notif['label'],
'$header' => htmlentities($header),
'$header' => $header,
'$str_notifytype' => L10n::t('Notification type:'),
'$notify_type' => $notif['notify_type'],
'$dfrn_text' => $dfrn_text,