diff options
author | Friendika <info@friendika.com> | 2011-01-23 03:25:03 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-01-23 03:25:03 -0800 |
commit | ab62b8f712382f72a0ec2e51812bc8ced299c154 (patch) | |
tree | 31d0041b86e49bb3c204621785982d5b553197cd | |
parent | 461625e378e8ccf6b66da64c00437da7f65e6dd6 (diff) | |
download | volse-hubzilla-ab62b8f712382f72a0ec2e51812bc8ced299c154.tar.gz volse-hubzilla-ab62b8f712382f72a0ec2e51812bc8ced299c154.tar.bz2 volse-hubzilla-ab62b8f712382f72a0ec2e51812bc8ced299c154.zip |
fix quotes (again)
-rw-r--r-- | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index f1169aeb4..5f8264beb 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'] ); |