From 587b666ea9720eb77e55a6e2a0be96f4e87a6f14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaussoin=20Timoth=C3=A9e?= Date: Thu, 19 Jun 2014 22:30:31 +0200 Subject: [PATCH] - Another little fix --- app/widgets/WidgetCommon/WidgetCommon.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/widgets/WidgetCommon/WidgetCommon.php b/app/widgets/WidgetCommon/WidgetCommon.php index 1ab010594..1a78de5a4 100644 --- a/app/widgets/WidgetCommon/WidgetCommon.php +++ b/app/widgets/WidgetCommon/WidgetCommon.php @@ -131,7 +131,7 @@ class WidgetCommon extends WidgetBase { $content = $post->contentcleaned; if(!isset($content)) - $content = $post->content; + $content = prepareString(html_entity_decode($post->content)); if($post->node == 'urn:xmpp:microblog:0') $comments = $this->printComments($post, $comments, $public);