diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-11-06 05:10:39 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-11-06 05:10:39 +0000 |
commit | f712a8b25b297e90599491dfd59b8636843496a6 (patch) | |
tree | 2892a1ac6428c6fc745c0d07ae5b8045251ab25d | |
parent | d37938e87b96e48c8ee52bb6ce8f1cf55b6654c2 (diff) |
issue62, fix time information for item pubDate in rss feed
git-svn-id: file:///var/lib/svn/phpfspot/trunk@297 fa6a889d-dae6-447d-9e79-4ba9a3039384
-rw-r--r-- | phpfspot.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php index cc1c873..4b033f6 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -1674,7 +1674,7 @@ class PHPFSPOT { <description> <?php print $thumb_html; ?> </description> - <pubDate><?php print strftime("%a, %d %b %Y %T %z"); ?></pubDate> + <pubDate><?php print strftime("%a, %d %b %Y %T %z", $meta_date); ?></pubDate> </item> <?php |