aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-01-23 03:25:03 -0800
committerFriendika <info@friendika.com>2011-01-23 03:25:03 -0800
commitab62b8f712382f72a0ec2e51812bc8ced299c154 (patch)
tree31d0041b86e49bb3c204621785982d5b553197cd /include
parent461625e378e8ccf6b66da64c00437da7f65e6dd6 (diff)
downloadvolse-hubzilla-ab62b8f712382f72a0ec2e51812bc8ced299c154.tar.gz
volse-hubzilla-ab62b8f712382f72a0ec2e51812bc8ced299c154.tar.bz2
volse-hubzilla-ab62b8f712382f72a0ec2e51812bc8ced299c154.zip
fix quotes (again)
Diffstat (limited to 'include')
-rw-r--r--include/items.php2
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;amp;', '&amp;gt;', '&amp;lt;', '&amp;quot;'),
- array('&amp;' , '&gt;' , '&lt;', '&quot'),
+ array('&amp;' , '&gt;' , '&lt;', '&quot;'),
$arr['body']
);