From: Joey Hess Date: Thu, 2 Feb 2012 02:47:21 +0000 (-0400) Subject: fix typo in LC_TIME locale lookup X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3200515b3d447eea032f96ebff17d9bfa8ea255b;p=ikiwiki.git fix typo in LC_TIME locale lookup --- 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(@_))