Reply to Reply to Reply to Reply to partly fixed... / #4031

Really? I didn't know that. Good to know. I don't have access to a Windows-based server, so could you please help test that? Try changing the following lines:

from render/render_misc.inc.php, lines 585-587

        // fix %e formatter if not supported (e.g. on Windows)
        if(strftime("%e", mktime(12, 0, 0, 1, 1)) != '1')
            $userFormatDate = str_replace("%e", "%d", $userFormatDate);
into

from render/render_misc.inc.php, lines 585-587

        // fix %e formatter if not supported (e.g. on Windows)
        if(strftime("%e", mktime(12, 0, 0, 1, 1)) != '1')
            $userFormatDate = str_replace("%e", "%#d", $userFormatDate);
(third line changed) and let me know if it works. Thanks!