It writes current time for all feed items.
Solution:
In the function rfc822, the line
$date = gmdate("D, d M Y H:i:s", time());
should be corrected as
$date = gmdate("D, d M Y H:i:s", $this->unix);
Log in to post a comment.