2013-01-12, 06:42:40
Ok, we've got it. Your server is returning date strings in a non-UTF8 format.
A patch for News Manager could be:
edit news_manager/inc/functions.php, at line 86 you'll find:
Change it to:
This should fix your issue.
I'll probably do this or a similar patch for next NM release.
A patch for News Manager could be:
edit news_manager/inc/functions.php, at line 86 you'll find:
PHP Code:
$date = strftime($format, $timestamp);
Change it to:
PHP Code:
$date = utf8_encode(strftime($format, $timestamp));
This should fix your issue.
I'll probably do this or a similar patch for next NM release.