From: Friendika Date: Fri, 21 Jan 2011 05:02:02 +0000 (-0800) Subject: repair double-encoded double quotes X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c574e4c5879312f57db43436044285de56026f0b;p=friendica.git repair double-encoded double quotes --- diff --git a/include/items.php b/include/items.php index 1fdbc6fc20..f1169aeb41 100644 --- a/include/items.php +++ b/include/items.php @@ -636,8 +636,8 @@ function item_store($arr) { // they came through. $arr['body'] = str_replace( - array('&amp;','&gt;','&lt;'), - array('&' ,'>' ,'<'), + array('&amp;', '&gt;', '&lt;', '&quot;'), + array('&' , '>' , '<', '"'), $arr['body'] );