From: Joey Hess Date: Thu, 2 Feb 2012 02:47:21 +0000 (-0400) Subject: fix typo in LC_TIME locale lookup X-Git-Tag: 3.20120202~4 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/3200515b3d447eea032f96ebff17d9bfa8ea255b?hp=-c fix typo in LC_TIME locale lookup --- 3200515b3d447eea032f96ebff17d9bfa8ea255b diff --git a/IkiWiki.pm b/IkiWiki.pm index 0a788f35b..2a83777e6 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -1156,7 +1156,7 @@ sub strftime_utf8 { # strftime doesn't know about encodings, so make sure # its output is properly treated as utf8. # Note that this does not handle utf-8 in the format string. - $strftime_encoding = POSIX::setlocale(&POSIX::LC_TIME) =~ m#\.([^@]+)# + ($strftime_encoding) = POSIX::setlocale(&POSIX::LC_TIME) =~ m#\.([^@]+)# unless defined $strftime_encoding; $strftime_encoding ? Encode::decode($strftime_encoding, POSIX::strftime(@_))