From: Andrew DeFaria Date: Tue, 18 Aug 2020 11:09:58 +0000 (-0700) Subject: Fixed importlist.cgi X-Git-Url: https://defaria.com/gitweb/?a=commitdiff_plain;h=8ffd10a144f3547e035d18ebebb6a094f1cc8693;p=clearscm.git Fixed importlist.cgi Also turned of exec bit on WellsFargo --- diff --git a/maps/bin/importlist.cgi b/maps/bin/importlist.cgi index 6f4e5f3..495da15 100755 --- a/maps/bin/importlist.cgi +++ b/maps/bin/importlist.cgi @@ -32,11 +32,14 @@ my $userid = cookie('MAPSUser'); $userid //= $ENV{USER}; my $Userid = ucfirst $userid; +my $type = param 'type'; +my $file = param 'file'; + my %opts = ( usage => sub { pod2usage }, help => sub { pod2usage (-verbose => 2)}, - type => param('type'), - file => param('file'), + type => $type, + file => $file, ); sub importList ($) { diff --git a/rc/client_scripts/WellsFargo b/rc/client_scripts/WellsFargo old mode 100755 new mode 100644