summary refs log tree commit diff stats
path: root/rss.php
diff options
context:
space:
mode:
Diffstat (limited to 'rss.php')
-rwxr-xr-xrss.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/rss.php b/rss.php index c232fe3..176ea32 100755 --- a/rss.php +++ b/rss.php
@@ -232,7 +232,7 @@ foreach ($items as $key => $value)
232 232
233 <link>http://fourisland.com/blog/<?php echo($value['slug']); ?>/</link> 233 <link>http://fourisland.com/blog/<?php echo($value['slug']); ?>/</link>
234 234
235 <description><?php echo(stripslashes(htmlentities(parseBBCode($value['text'])))); ?></description> 235 <description><?php echo(stripslashes(htmlentities(parseText($value['text'])))); ?></description>
236 236
237 <pubDate><?php echo(date('D, d M Y H:i:s O',$value['sortDate'])); ?></pubDate> 237 <pubDate><?php echo(date('D, d M Y H:i:s O',$value['sortDate'])); ?></pubDate>
238 </item> 238 </item>
@@ -260,7 +260,7 @@ foreach ($items as $key => $value)
260 260
261 <link>http://fourisland.com/<?php echo($value['url']); ?>#comment-<?php echo($value['id']); ?></link> 261 <link>http://fourisland.com/<?php echo($value['url']); ?>#comment-<?php echo($value['id']); ?></link>
262 262
263 <description><?php echo(stripslashes(htmlentities(parseBBCode($value['comment'])))); ?></description> 263 <description><?php echo(stripslashes(htmlentities(parseText($value['comment'])))); ?></description>
264 264
265 <pubDate><?php echo(date('D, d M Y H:i:s O',$value['sortDate'])); ?></pubDate> 265 <pubDate><?php echo(date('D, d M Y H:i:s O',$value['sortDate'])); ?></pubDate>
266 </item> 266 </item>