Welcome to Geeklog, Anonymous Monday, December 30 2024 @ 09:52 am EST
Geeklog Forums
Fake RSS dates in Media Gallery 1.6.16
Status: offline
LWC
Forum User
Full Member
Registered: 02/19/04
Posts: 818
The bad dates are because they have to be RFC approved, but the developer of the relevant code just assumed the local would be English.
I've fixed both issues myself in mediagallery/include/rssfeed.php:
1) Stop treating none images like images:
...
$item->title = $row['media_title'];
// custom code - start
if ($row['media_type']==4)
$external_method = 'download.php?mid=';
else
$external_method = 'media.php?s=';
$item->link = $_MG_CONF['site_url'] . '/' . $external_method . $row['media_id'];
// $item->link = $_MG_CONF['site_url'] . '/media.php?s=' . $row['media_id'];
// custom code - end
2)
...
// custom code - start
$item->date = _RFC822DateFormat($row['media_time']);
//$item->date = strftime("%a, %d %b %Y %H:%M:%S %z",$row['media_time']);
// custom code - end
$item->source = $_CONF['site_url'];
Also in
...
// custom code - start
$item->date = _RFC822DateFormat($MG_albums[$aid]->last_update);
//$item->date = strftime("%a, %d %b %Y %H:%M:%S %z",$MG_albums[$aid]->last_update);
// custom code - end
$item->source = $_CONF['site_url'];
_RFC822DateFormat is taken from Geeklog. You'd need to copy and paste this function:
// custom code - start
/**
* Generate an RFC-822 compliant date-time stamp.
*
* @param timestamp $timestamp Date time to format.
*/
function _RFC822DateFormat($timestamp='')
{
// format the date
if(!empty($timestamp))
{
$time = date( 'r', $timestamp);
} else {
$time = date( 'r' );
}
// return the time
return $time;
}
// custom code - end
I've fixed both issues myself in mediagallery/include/rssfeed.php:
1) Stop treating none images like images:
Text Formatted Code
function MG_processAlbumFeedItems( &$rss, $aid ) {...
$item->title = $row['media_title'];
// custom code - start
if ($row['media_type']==4)
$external_method = 'download.php?mid=';
else
$external_method = 'media.php?s=';
$item->link = $_MG_CONF['site_url'] . '/' . $external_method . $row['media_id'];
// $item->link = $_MG_CONF['site_url'] . '/media.php?s=' . $row['media_id'];
// custom code - end
2)
Text Formatted Code
function MG_processAlbumFeedItems( &$rss, $aid ) {...
// custom code - start
$item->date = _RFC822DateFormat($row['media_time']);
//$item->date = strftime("%a, %d %b %Y %H:%M:%S %z",$row['media_time']);
// custom code - end
$item->source = $_CONF['site_url'];
Also in
Text Formatted Code
function MG_parseAlbumsRSS( &$rss, $aid ) {...
// custom code - start
$item->date = _RFC822DateFormat($MG_albums[$aid]->last_update);
//$item->date = strftime("%a, %d %b %Y %H:%M:%S %z",$MG_albums[$aid]->last_update);
// custom code - end
$item->source = $_CONF['site_url'];
_RFC822DateFormat is taken from Geeklog. You'd need to copy and paste this function:
Text Formatted Code
// custom code - start
/**
* Generate an RFC-822 compliant date-time stamp.
*
* @param timestamp $timestamp Date time to format.
*/
function _RFC822DateFormat($timestamp='')
{
// format the date
if(!empty($timestamp))
{
$time = date( 'r', $timestamp);
} else {
$time = date( 'r' );
}
// return the time
return $time;
}
// custom code - end
31
18
Quote
All times are EST. The time is now 09:52 am.
- Normal Topic
- Sticky Topic
- Locked Topic
- New Post
- Sticky Topic W/ New Post
- Locked Topic W/ New Post
- View Anonymous Posts
- Able to post
- Filtered HTML Allowed
- Censored Content