summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xrss.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/rss.php b/rss.php index 4b710aa..6a6b80f 100755 --- a/rss.php +++ b/rss.php
@@ -2,6 +2,7 @@
2 2
3include('includes/db.php'); 3include('includes/db.php');
4include('includes/update.php'); 4include('includes/update.php');
5include('includes/functions.php');
5 6
6echo('<?xml version="1.0"?>'); 7echo('<?xml version="1.0"?>');
7 8
@@ -24,6 +25,7 @@ while ($getitems3 = mysql_fetch_array($getitems2))
24 <link>http://pillowcase.fourisland.com/comic<?php echo($getitems3['comic_id']); ?>.htm</link> 25 <link>http://pillowcase.fourisland.com/comic<?php echo($getitems3['comic_id']); ?>.htm</link>
25 <description><![CDATA[<IMG SRC="http://pillowcase.fourisland.com/images/comics/<?php echo($getitems3['filename']); ?> ALT="<?php echo($getitems3['title']); ?>"><p><?php echo($getitems3['text']); ?></p>]]></description> 26 <description><![CDATA[<IMG SRC="http://pillowcase.fourisland.com/images/comics/<?php echo($getitems3['filename']); ?> ALT="<?php echo($getitems3['title']); ?>"><p><?php echo($getitems3['text']); ?></p>]]></description>
26 <pubDate><?php echo(date('D, d M Y H:i:s O',strtotime($getitems3['pubDate']))); ?></pubDate> 27 <pubDate><?php echo(date('D, d M Y H:i:s O',strtotime($getitems3['pubDate']))); ?></pubDate>
28 <author><?php echo(has_meta($getitems3['comic_id'], 'author') ? get_meta($getitems3['comic_id'], 'author') : 'Starla Insigna'); ?></author>
27 </item> 29 </item>
28<?php 30<?php
29} 31}