diff options
author | Friendika <info@friendika.com> | 2011-01-20 21:02:02 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-01-20 21:02:02 -0800 |
commit | c574e4c5879312f57db43436044285de56026f0b (patch) | |
tree | e747ca104e971f97fe287663208c26f5390001a5 /include | |
parent | aeb585fee1c634f75128a60cdb10ef8c8451e69a (diff) | |
download | volse-hubzilla-c574e4c5879312f57db43436044285de56026f0b.tar.gz volse-hubzilla-c574e4c5879312f57db43436044285de56026f0b.tar.bz2 volse-hubzilla-c574e4c5879312f57db43436044285de56026f0b.zip |
repair double-encoded double quotes
Diffstat (limited to 'include')
-rw-r--r-- | include/items.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php index 1fdbc6fc2..f1169aeb4 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'] ); |