Skip to content
This repository has been archived by the owner on Oct 7, 2022. It is now read-only.

Commit

Permalink
Fixed RFC-822 error in RSS feed pubDate because computers are so pick…
Browse files Browse the repository at this point in the history
…y geez
  • Loading branch information
mreidsma committed Oct 7, 2014
1 parent b25026e commit f0c14d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rss/index.php
Expand Up @@ -48,7 +48,7 @@
<description>' . $description. '</description>
<content:encoded><![CDATA[' . Markdown($obj->status_text) . ']]></content:encoded>
<author>' . $obj->user_email . ' (' . $obj->user_fn . ' ' . $obj->user_ln . ')</author>
<pubDate>' . date('D, d M Y g:i:s O', $obj->status_timestamp) . '</pubDate>
<pubDate>' . date('D, d M Y h:i:s O', $obj->status_timestamp) . '</pubDate>
<guid>http://labs.library.gvsu.edu/status/detail.php?id=' . $obj->issue_id . '</guid>
</item>
';
Expand Down

0 comments on commit f0c14d8

Please sign in to comment.