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

@ -34,6 +34,7 @@
- Made many minor code efficiency changes.
- fix: Two cookies and incorrect Last-Modified date in HTTP header
- WebGUI::Text no longer spits out a billion warnings
- fix: workaround for IE not handling ' in SyndicatedContent was not catching everything
7.1.3
- fix: SQLReport now returns error if can't find DatabaseLink

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;
}
}