diff options
Diffstat (limited to 'rss.php')
-rwxr-xr-x | rss.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rss.php b/rss.php index 6a6b80f..e11e43a 100755 --- a/rss.php +++ b/rss.php | |||
@@ -1,8 +1,8 @@ | |||
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | include('includes/db.php'); | 3 | include('includes/db.php'); |
4 | include('includes/update.php'); | ||
5 | include('includes/functions.php'); | 4 | include('includes/functions.php'); |
5 | include('includes/update.php'); | ||
6 | 6 | ||
7 | echo('<?xml version="1.0"?>'); | 7 | echo('<?xml version="1.0"?>'); |
8 | 8 | ||
@@ -24,7 +24,7 @@ while ($getitems3 = mysql_fetch_array($getitems2)) | |||
24 | <title><?php echo($getitems3['title']); ?></title> | 24 | <title><?php echo($getitems3['title']); ?></title> |
25 | <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> |
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 | <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> |
27 | <pubDate><?php echo(date('D, d M Y H:i:s O',strtotime($getitems3['pubDate']))); ?></pubDate> | 27 | <pubDate><?php echo(date('r',strtotime(get_meta($getitems3['id'], 'pubDate')))); ?></pubDate> |
28 | <author><?php echo(has_meta($getitems3['comic_id'], 'author') ? get_meta($getitems3['comic_id'], 'author') : 'Starla Insigna'); ?></author> | 28 | <author><?php echo(has_meta($getitems3['comic_id'], 'author') ? get_meta($getitems3['comic_id'], 'author') : 'Starla Insigna'); ?></author> |
29 | </item> | 29 | </item> |
30 | <?php | 30 | <?php |