summaryrefslogtreecommitdiff
path: root/fs_selfservice/FS-SelfService/cgi/misc/counties.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'fs_selfservice/FS-SelfService/cgi/misc/counties.cgi')
-rwxr-xr-xfs_selfservice/FS-SelfService/cgi/misc/counties.cgi18
1 files changed, 0 insertions, 18 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/misc/counties.cgi b/fs_selfservice/FS-SelfService/cgi/misc/counties.cgi
deleted file mode 100755
index 476fe09..0000000
--- a/fs_selfservice/FS-SelfService/cgi/misc/counties.cgi
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/perl -w
-
-use strict;
-use CGI;
-use FS::SelfService qw( mason_comp );
-
-my $cgi = new CGI;
-
-my $rv = mason_comp( 'comp' => '/misc/counties.cgi',
- 'query_string' => $cgi->query_string, #pass CGI params...
- );
-
-#hmm.
-my $output = $rv->{'error'} || $rv->{'output'};
-
-print $cgi->header( '-expires' => 'now' ).
- $output;
-