Issue-6329: Prevent double encoding

This commit is contained in:
Michael 2018-12-26 11:21:42 +00:00
parent 7357de411d
commit f274357ad6
2 changed files with 3 additions and 5 deletions

View file

@ -643,7 +643,7 @@ class Contact extends BaseModule
'$profileurllabel'=> L10n::t('Profile URL'),
'$profileurl' => $contact['url'],
'$account_type' => Model\Contact::getAccountType($contact),
'$location' => BBCode::convert($contact['location']),
'$location' => $contact['location'],
'$location_label' => L10n::t('Location:'),
'$xmpp' => BBCode::convert($contact['xmpp']),
'$xmpp_label' => L10n::t('XMPP:'),