use strftime instead of date

darcs-hash:20080404170318-2b4f5-eed58af13ed81221ad51b4b100b93582b96c1322.gz
This commit is contained in:
Gina Haeussge
2008-04-04 19:03:18 +02:00
parent 3355008959
commit 9940b5272a

View File

@@ -201,7 +201,7 @@ class syntax_plugin_filelist extends DokuWiki_Syntax_Plugin {
if ($params['tableshowdate']) {
$renderer->tablecell_open();
$renderer->doc .= date($conf['dformat'], $filemtime);
$renderer->doc .= strftime($conf['dformat'], $filemtime);
$renderer->tablecell_close();
}