|
From: alfrog <alf...@ya...> - 2004-06-18 19:21:45
|
I had the same problem.
I think it appens when system date isn't in english.
I do this to make it work : (It can be done in better way but I didn't to=
ok=20
the time to look for)
Edit feed_db.pl near line 58, and replace the for generating $m tab
my($month_nb);
for $month_nb (0..11) {
$m{strftime("%b", 0, 0, 0, 1, $month_nb, 96)}=3Dsprintf("%02d",$mont=
h_nb+1);
}
by this :
$m{"Jan"}=3D1;
$m{"Fev"}=3D2;
$m{"Mar"}=3D3;
$m{"Apr"}=3D4;
$m{"May"}=3D5;
$m{"Jun"}=3D6;
$m{"Jul"}=3D7;
$m{"Aug"}=3D8;
$m{"Sep"}=3D9;
$m{"Oct"}=3D10;
$m{"Nov"}=3D11;
$m{"Dec"}=3D12;
|