]> git.deb.at Git - pkg/blosxom.git/blobdiff - blosxom.cgi
Avoid use of module Time::localtime
[pkg/blosxom.git] / blosxom.cgi
index 1506f94443e0eabb079bd210cae7066a661d393b..5d2d6e6da1d07c8e50ccc3d2684e1a2763755a60 100755 (executable)
@@ -84,7 +84,6 @@ use strict;
 use FileHandle;
 use File::Find;
 use File::stat;
 use FileHandle;
 use File::Find;
 use File::stat;
-use Time::localtime;
 use Time::Local;
 use CGI qw/:standard :netscape/;
 
 use Time::Local;
 use CGI qw/:standard :netscape/;
 
@@ -692,7 +691,7 @@ sub generate {
 sub nice_date {
     my ($unixtime) = @_;
 
 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})$/
     my ( $dw, $mo, $da, $hr, $min, $yr )
         = ( $c_time
             =~ /(\w{3}) +(\w{3}) +(\d{1,2}) +(\d{2}):(\d{2}):\d{2} +(\d{4})$/