Status: offline

sakata

Forum User
Junior
Registered: 12/17/01
Posts: 25
Hi,
The strftime used in /system/classes/syndication/rss.feed.class.php causes starnge pubDate in Japanese environment.
We need to get RFC-822 format in this place.

The following suggestion would solve this problem.

Around 282
strftime( '%a, %d %b %Y %H:%M:%S %z', $article['date'] )
--> date( 'r', $article['date'] )

Around 358
strftime( '%a, %d %b %Y %H:%M:%S %z' )
--> date( 'r' )

Status: offline

Dirk

Site Admin
Admin
Registered: 01/12/02
Posts: 13073
Mike already addressed that in CVS.

bye, Dirk

Status: offline

sakata

Forum User
Junior
Registered: 12/17/01
Posts: 25
Oh, I should have checked the CVS.

Thanks.