From 7.1 branch, merge fix to SyndicatedContent re IE not handling '

and associated workaround not handling all instances.
This commit is contained in:
Drake 2006-11-03 22:13:13 +00:00
parent 507658aed1
commit 23f32fd1e9
2 changed files with 3 additions and 2 deletions

View file

@ -288,8 +288,8 @@ sub _normalize_items {
}
# IE doesn't recognize '
$item->{title} =~ s/'/\'/;
$item->{description} =~ s/'/\'/;
$item->{title} =~ s/'/\'/g;
$item->{description} =~ s/'/\'/g;
}
}