From c574e4c5879312f57db43436044285de56026f0b Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 20 Jan 2011 21:02:02 -0800 Subject: [PATCH] repair double-encoded double quotes --- include/items.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'] );