X-Git-Url: https://git.deb.at/?p=pkg%2Fblosxom.git;a=blobdiff_plain;f=blosxom.cgi;h=5d2d6e6da1d07c8e50ccc3d2684e1a2763755a60;hp=1506f94443e0eabb079bd210cae7066a661d393b;hb=d3b78ea0102bb3086d4e356b3956d3fe2de68e60;hpb=17d8df55390b29f751e9f5d34a13e56ab3e150c5 diff --git a/blosxom.cgi b/blosxom.cgi index 1506f94..5d2d6e6 100755 --- a/blosxom.cgi +++ b/blosxom.cgi @@ -84,7 +84,6 @@ use strict; use FileHandle; use File::Find; use File::stat; -use Time::localtime; use Time::Local; use CGI qw/:standard :netscape/; @@ -692,7 +691,7 @@ sub generate { sub nice_date { my ($unixtime) = @_; - my $c_time = ctime($unixtime); + my $c_time = CORE::localtime($unixtime); my ( $dw, $mo, $da, $hr, $min, $yr ) = ( $c_time =~ /(\w{3}) +(\w{3}) +(\d{1,2}) +(\d{2}):(\d{2}):\d{2} +(\d{4})$/