Merge pull request #3356 from Hypolite/issue/fix-notifications-display
Remove extra htmlentities in notifications
This commit is contained in:
commit
901c757069
1 changed files with 1 additions and 1 deletions
|
@ -292,7 +292,7 @@ function notifications_content(App $a) {
|
|||
'$item_link' => $it['link'],
|
||||
'$item_image' => $it['image'],
|
||||
'$item_url' => $it['url'],
|
||||
'$item_text' => htmlentities($it['text']),
|
||||
'$item_text' => $it['text'],
|
||||
'$item_when' => $it['when'],
|
||||
'$item_ago' => $it['ago'],
|
||||
'$item_seen' => $it['seen'],
|
||||
|
|
Loading…
Reference in a new issue