As some others here, I have the problem with showing the calendar month March (in German März) in the right format. Instead, I get "März". I have a two-language-blog, in German and Swedish, and because Swedish weekdays wasn't shown correctly either, I changed the following in /include/functions.inc.php:
Code: Select all
function serendipity_strftime($format, $timestamp = null, $useOffset = true) {
global $serendipity;
static $is_win_utf = null;Code: Select all
function serendipity_strftime($format, $timestamp = null, $useOffset = true) {
global $serendipity;
static $is_win_utf = true;Lillebror