Issue 6316: Do not double encode / Avoid notice

This commit is contained in:
Michael 2018-12-25 12:12:59 +00:00
parent a8cbeab8a0
commit ccb9be8f28
2 changed files with 2 additions and 2 deletions

View file

@ -511,7 +511,7 @@ class Contact extends BaseModule
$relation_text = '';
}
$relation_text = sprintf($relation_text, htmlentities($contact['name']));
$relation_text = sprintf($relation_text, $contact['name']);
$url = Model\Contact::magicLink($contact['url']);
if (strpos($url, 'redir/') === 0) {