From: Friendika Date: Sun, 23 Jan 2011 11:25:03 +0000 (-0800) Subject: fix quotes (again) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ab62b8f712382f72a0ec2e51812bc8ced299c154;p=friendica.git fix quotes (again) --- 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'] );