mirror of
https://github.com/friendica/friendica
synced 2025-04-19 06:30:10 +00:00
Issue 6316: Do not double encode / Avoid notice
This commit is contained in:
parent
a8cbeab8a0
commit
ccb9be8f28
2 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue