/**
* Convert numeric Epoch to the date format expected in a RSS document.
*/
- public static function epochToGmdate($timestamp) {
+ public static function epochToRssDate($timestamp) {
if (!is_numeric($timestamp) || is_nan($timestamp)) {
$timestamp = 0;
}
- return gmdate('D, d M Y H:i:s', $timestamp) . ' GMT';
+ return gmdate(DATE_RSS, $timestamp);
}
/**
* Convert generic date string to the date format expected in a RSS document.
*/
- public static function strToGmdate($date) {
+ public static function strToRssDate($date) {
$timestamp = strtotime($date);
if (FALSE === $timestamp) {
$timestamp = 0;
}
- return Tweeper::epochToGmdate($timestamp);
+ return Tweeper::epochToRssDate($timestamp);
}
/**