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:
parent
5fd780c8a9
commit
777f7f072c
2 changed files with 10 additions and 8 deletions
|
@ -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/">
|
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
<channel>
|
<channel>
|
||||||
<title><?php echo $feedtitle; ?></title>
|
<title><?php echo htmlspecialchars($feedtitle); ?></title>
|
||||||
<link><?php echo $feedlink; ?></link>
|
<link><?php echo htmlspecialchars($feedlink); ?></link>
|
||||||
<description><?php echo $feeddescription; ?></description>
|
<description><?php echo htmlspecialchars($feeddescription); ?></description>
|
||||||
<pubDate><?php echo date('r'); ?></pubDate>
|
<pubDate><?php echo date('r'); ?></pubDate>
|
||||||
<lastBuildDate><?php echo $feedlastupdate ?></lastBuildDate>
|
<lastBuildDate><?php echo $feedlastupdate ?></lastBuildDate>
|
||||||
<ttl>60</ttl>
|
<ttl>60</ttl>
|
||||||
|
|
||||||
<?php foreach($bookmarks as $bookmark): ?>
|
<?php foreach($bookmarks as $bookmark): ?>
|
||||||
<item>
|
<item>
|
||||||
<title><?php echo $bookmark['title']; ?></title>
|
<title><?php echo htmlspecialchars($bookmark['title']); ?></title>
|
||||||
<link><?php echo $bookmark['link']; ?></link>
|
<link><?php echo htmlspecialchars($bookmark['link']); ?></link>
|
||||||
<description><?php echo $bookmark['description']; ?></description>
|
<description><?php echo htmlspecialchars($bookmark['description']); ?></description>
|
||||||
<dc:creator><?php echo $bookmark['creator']; ?></dc:creator>
|
<dc:creator><?php echo htmlspecialchars($bookmark['creator']); ?></dc:creator>
|
||||||
<pubDate><?php echo $bookmark['pubdate']; ?></pubDate>
|
<pubDate><?php echo $bookmark['pubdate']; ?></pubDate>
|
||||||
<?php foreach($bookmark['tags'] as $tag): ?>
|
<?php foreach($bookmark['tags'] as $tag): ?>
|
||||||
<category><?php echo $tag; ?></category>
|
<category><?php echo htmlspecialchars($tag); ?></category>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</item>
|
</item>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
|
|
@ -15,6 +15,8 @@ ChangeLog for SemantiScuttle
|
||||||
Patch by fnorder@users.sourceforge.net
|
Patch by fnorder@users.sourceforge.net
|
||||||
- Implement request #2934872: Option to set the "no description"
|
- Implement request #2934872: Option to set the "no description"
|
||||||
description. Patch by fnorder@users.sourceforge.net
|
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
|
0.95.2 - 2010-01-16
|
||||||
|
|
Loading…
Reference in a new issue