From 2c69d368864f7e23075151a810d7dcf869b128c6 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Tue, 18 Apr 2017 19:34:46 -0400 Subject: [PATCH] Remove extra htmlentities in notifications --- mod/notifications.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/notifications.php b/mod/notifications.php index 0c08b66ce0..bab5fd6274 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -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'],