Fix bug #2934891: RSS XML was sometimes invalid because

special characters did not get escaped.

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@617 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
cweiske 2010-01-19 20:32:10 +00:00
parent 5fd780c8a9
commit 777f7f072c
2 changed files with 10 additions and 8 deletions

View file

@ -3,22 +3,22 @@ echo '<' . '?xml version="1.0" encoding="utf-8" ?' . ">\n";
?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title><?php echo $feedtitle; ?></title>
<link><?php echo $feedlink; ?></link>
<description><?php echo $feeddescription; ?></description>
<title><?php echo htmlspecialchars($feedtitle); ?></title>
<link><?php echo htmlspecialchars($feedlink); ?></link>
<description><?php echo htmlspecialchars($feeddescription); ?></description>
<pubDate><?php echo date('r'); ?></pubDate>
<lastBuildDate><?php echo $feedlastupdate ?></lastBuildDate>
<ttl>60</ttl>
<?php foreach($bookmarks as $bookmark): ?>
<item>
<title><?php echo $bookmark['title']; ?></title>
<link><?php echo $bookmark['link']; ?></link>
<description><?php echo $bookmark['description']; ?></description>
<dc:creator><?php echo $bookmark['creator']; ?></dc:creator>
<title><?php echo htmlspecialchars($bookmark['title']); ?></title>
<link><?php echo htmlspecialchars($bookmark['link']); ?></link>
<description><?php echo htmlspecialchars($bookmark['description']); ?></description>
<dc:creator><?php echo htmlspecialchars($bookmark['creator']); ?></dc:creator>
<pubDate><?php echo $bookmark['pubdate']; ?></pubDate>
<?php foreach($bookmark['tags'] as $tag): ?>
<category><?php echo $tag; ?></category>
<category><?php echo htmlspecialchars($tag); ?></category>
<?php endforeach; ?>
</item>
<?php endforeach; ?>

View file

@ -15,6 +15,8 @@ ChangeLog for SemantiScuttle
Patch by fnorder@users.sourceforge.net
- Implement request #2934872: Option to set the "no description"
description. Patch by fnorder@users.sourceforge.net
- Fix bug #2934891: RSS XML was sometimes invalid because
special characters did not get escaped.
0.95.2 - 2010-01-16