diff options
author | Nathan Kinkade <nath@nkinka.de> | 2012-05-12 13:06:18 +0000 |
---|---|---|
committer | Nathan Kinkade <nath@nkinka.de> | 2012-05-12 13:06:18 +0000 |
commit | f5098f54b8279f468d94747b1156e15ea05d6d25 (patch) | |
tree | 2ecfb6663887ffbc72de8f231864b6c78bd62640 /modules/comment/helpers/comment_rss.php | |
parent | a13fd7f373f3718037a2ce90a3cb408f24856602 (diff) | |
parent | d1390bd87db1a7e59bbd72f5991fbbc6374c98b4 (diff) |
Merge branch 'master' of git://github.com/gallery/gallery3
Diffstat (limited to 'modules/comment/helpers/comment_rss.php')
-rw-r--r-- | modules/comment/helpers/comment_rss.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/helpers/comment_rss.php b/modules/comment/helpers/comment_rss.php index cfee4727..be1968dc 100644 --- a/modules/comment/helpers/comment_rss.php +++ b/modules/comment/helpers/comment_rss.php @@ -65,7 +65,7 @@ class comment_rss_Core { foreach ($comments->find_all($limit, $offset) as $comment) { $item = $comment->item(); $feed->comments[] = new ArrayObject( - array("pub_date" => date("D, d M Y H:i:s T", $comment->created), + array("pub_date" => date("D, d M Y H:i:s O", $comment->created), "text" => nl2br(html::purify($comment->text)), "thumb_url" => $item->thumb_url(), "thumb_height" => $item->thumb_height, |