]> git.mjollnir.org Git - s9y.git/commitdiff
only assume that windows has no german utf-8 locales
authorgarvinhicking <garvinhicking>
Fri, 21 Apr 2006 07:58:15 +0000 (07:58 +0000)
committergarvinhicking <garvinhicking>
Fri, 21 Apr 2006 07:58:15 +0000 (07:58 +0000)
include/functions.inc.php

index 8f729e4da4374dbb124090224378969f8d0ac4d4..bddfea70965f4c386093b30fc4c08b15bcef302c 100644 (file)
@@ -80,7 +80,7 @@ function serendipity_strftime($format, $timestamp = null, $useOffset = true) {
 
     if ($is_win_utf === null) {
         // Windows does not have UTF-8 locales.
-        $is_win_utf = (LANG_CHARSET == 'UTF-8' && strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' ? true : false);
+        $is_win_utf = (LANG_CHARSET == 'UTF-8' && $serendipity['lang'] == 'de' && strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' ? true : false);
     }
 
     switch($serendipity['calendar']) {