mirror of
https://github.com/friendica/friendica
synced 2024-11-10 13:02:54 +00:00
Merge pull request #2731 from annando/1608-notifications-format
HTML entities in notifications aren't a problem anymore
This commit is contained in:
commit
9988a5b7c4
1 changed files with 1 additions and 1 deletions
|
@ -285,7 +285,7 @@ function notifications_content(&$a) {
|
|||
'$item_label' => $it['label'],
|
||||
'$item_link' => $it['link'],
|
||||
'$item_image' => $it['image'],
|
||||
'$item_text' => $it['text'],
|
||||
'$item_text' => htmlentities($it['text']),
|
||||
'$item_when' => $it['when'],
|
||||
'$item_seen' => $it['seen'],
|
||||
));
|
||||
|
|
Loading…
Reference in a new issue