Skip to content

Commit

Permalink
Fix "Undefined subroutine &main::strftime"
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Jul 5, 2024
1 parent b575f2c commit e80b501
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion cgi-bin/page.fcgi
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ use File::Spec;
use Log::WarnDie 0.09;
use CGI::ACL;
use HTTP::Date;
use Taint::Runtime qw($TAINT taint_env);
# FIXME: Gives Insecure dependency in require while running with -T switch in Module/Runtime.pm
# use Taint::Runtime qw($TAINT taint_env);
use POSIX qw(strftime);
use autodie qw(:all);

# use lib '/usr/lib'; # This needs to point to the Geo::Coder::Free directory lives,
Expand Down
1 change: 0 additions & 1 deletion t/version.t
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ BEGIN {
plan(skip_all => 'Author tests not required for installation');
}
}

0 comments on commit e80b501

Please sign in to comment.