summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2011-10-15 10:15:08 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2011-10-15 10:15:08 -0400
commitebaacd5435e868b1f95b46bda2c0e47228b5a046 (patch)
treef16b50aebc527e691d7f03b8c44597d69b989e62
parenta4cca42fa3afbe325ab403dae31aedb1c3cf4075 (diff)
downloadpillowcase-ebaacd5435e868b1f95b46bda2c0e47228b5a046.tar.gz
pillowcase-ebaacd5435e868b1f95b46bda2c0e47228b5a046.tar.bz2
pillowcase-ebaacd5435e868b1f95b46bda2c0e47228b5a046.zip
Fixed offset comic author in RSS problem
-rwxr-xr-xrss.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/rss.php b/rss.php index e11e43a..6e43c9c 100755 --- a/rss.php +++ b/rss.php
@@ -25,7 +25,7 @@ while ($getitems3 = mysql_fetch_array($getitems2))
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('r',strtotime(get_meta($getitems3['id'], '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['id'], 'author') ? get_meta($getitems3['id'], 'author') : 'Starla Insigna'); ?></author>
29 </item> 29 </item>
30<?php 30<?php
31} 31}