Merge pull request #3356 from Hypolite/issue/fix-notifications-display

Remove extra htmlentities in notifications
This commit is contained in:
Michael Vogel 2017-04-19 07:10:31 +02:00 committed by GitHub
commit 901c757069
1 changed files with 1 additions and 1 deletions

View File

@ -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'],