repair double-encoded double quotes

This commit is contained in:
Friendika 2011-01-20 21:02:02 -08:00
parent aeb585fee1
commit c574e4c587
1 changed files with 2 additions and 2 deletions

View File

@ -636,8 +636,8 @@ function item_store($arr) {
// they came through. // they came through.
$arr['body'] = str_replace( $arr['body'] = str_replace(
array('&','>','<'), array('&', '>', '<', '"'),
array('&' ,'>' ,'<'), array('&' , '>' , '<', '&quot'),
$arr['body'] $arr['body']
); );