diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-07-29 21:40:59 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-07-29 21:40:59 +0000 |
commit | ee3e0e3c50b5463f9612ce79c1c5a4d402a0071c (patch) | |
tree | f7124fc5c6b7fb67236df598a633e32439d4a72a | |
parent | 8f2d8142e40a883e0208904db99a7dea24679098 (diff) |
last minute fix from faidon
-rw-r--r-- | IkiWiki.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm index 085953a17..d369d7da8 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -61,7 +61,7 @@ sub checkconfig () { #{{{ if (defined $config{locale}) { eval q{use POSIX}; $ENV{LANG} = $config{locale} - if POSIX::setlocale(&POSIX::LANG, $config{locale}); + if POSIX::setlocale(&POSIX::LC_TIME, $config{locale}); } if ($config{w3mmode}) { |