gaim/www

Parents 4451042e9501
Children 6b24e6a64f72
Numbers like 23rd, 17th, and 1st were causing confusion in strtotime, so
now we just remove those.
--- a/htdocs/rss.php Mon Dec 22 15:43:08 2003 -0500
+++ b/htdocs/rss.php Mon Dec 22 15:48:46 2003 -0500
@@ -7,6 +7,10 @@
function rss_parse_date($date)
{
+ $date = str_replace("st,", "", $date);
+ $date = str_replace("nd,", "", $date);
+ $date = str_replace("rd,", "", $date);
+
$timestamp = strtotime($date);
return date("r", $timestamp);