From: Hypolite Petovan Date: Tue, 18 Apr 2017 23:34:46 +0000 (-0400) Subject: Remove extra htmlentities in notifications X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2c69d368864f7e23075151a810d7dcf869b128c6;p=friendica.git Remove extra htmlentities in notifications --- 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'],