Options
Vanilla with posts dated 29, 30 and 31 December... 2009?!

Not that it's very serious but my Vanilla installation dated all posts inserted on 29, 30 and 31 December as 2009?
You can check here.
Any idea why has this happened?
I've changed the date function to:
language/definitions.php
You can check here.
Any idea why has this happened?
I've changed the date function to:
language/definitions.php
$Context->Dictionary['OldPostDateFormatCode'] = '%e %B %G';library/Framework.Functions.php
if ($Days > 7) {
return strftime($Context->GetDefinition('OldPostDateFormatCode'), $Time);
} elseif ($Days > 1) {
return str_replace('//1', $Days, $Context->GetDefinition('XDaysAgo'));
} elseif ($Days == 1) {
return str_replace('//1', $Days, $Context->GetDefinition('XDayAgo'));
} else {
0