From ab62b8f712382f72a0ec2e51812bc8ced299c154 Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 23 Jan 2011 03:25:03 -0800 Subject: [PATCH] fix quotes (again) --- include/items.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index f1169aeb41..5f8264beb8 100644 --- a/include/items.php +++ b/include/items.php @@ -637,7 +637,7 @@ function item_store($arr) { $arr['body'] = str_replace( array('&amp;', '&gt;', '&lt;', '&quot;'), - array('&' , '>' , '<', '"'), + array('&' , '>' , '<', '"'), $arr['body'] );