diff options
author | cvs2git <cvs2git> | 2008-03-16 19:58:34 +0000 |
---|---|---|
committer | cvs2git <cvs2git> | 2008-03-16 19:58:34 +0000 |
commit | eb061f5119325e666f0dff40d4089e5c1df58e17 (patch) | |
tree | d55e8fef5aca62eb13bbc8ad20dbdf941c3bd266 /httemplate/edit/cust_main_county-expand.cgi | |
parent | 3a17b276638200475d54201fa62566b7440e819a (diff) |
This commit was manufactured by cvs2svn to create tag 'TRIXBOX_2_6'.TRIXBOX_2_6
Diffstat (limited to 'httemplate/edit/cust_main_county-expand.cgi')
-rwxr-xr-x | httemplate/edit/cust_main_county-expand.cgi | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/httemplate/edit/cust_main_county-expand.cgi b/httemplate/edit/cust_main_county-expand.cgi deleted file mode 100755 index d5297ab0a..000000000 --- a/httemplate/edit/cust_main_county-expand.cgi +++ /dev/null @@ -1,50 +0,0 @@ -<% include('/elements/header-popup.html', "Enter $title") %> - -<% include('/elements/error.html') %> - -<FORM ACTION="<% $p1 %>process/cust_main_county-expand.cgi" METHOD=POST> - -<INPUT TYPE="hidden" NAME="taxnum" VALUE="<% $taxnum %>"> - -<TEXTAREA NAME="expansion" COLS="50" ROWS="16"><% $expansion |h %></TEXTAREA> - -<BR> -<INPUT TYPE="submit" VALUE="Add <% $title %>"> - -</FORM> -</BODY> -</HTML> - -<%init> - -die "access denied" - unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); - -my($taxnum, $expansion); -my($query) = $cgi->keywords; -if ( $cgi->param('error') ) { - $taxnum = $cgi->param('taxnum'); - $expansion = $cgi->param('expansion'); -} else { - $query =~ /^(\d+)$/ - or die "Illegal taxnum (query $query)"; - $taxnum = $1; - $expansion = ''; -} - -my $cust_main_county = qsearchs('cust_main_county',{'taxnum'=>$taxnum}) - or die "cust_main_county.taxnum $taxnum not found"; - -my $title; - -die "Can't expand entry!" if $cust_main_county->county; - -if ( $cust_main_county->state ) { - $title = 'Counties'; -} else { - $title = 'States/Provinces'; -} - -my $p1 = popurl(1); - -</%init> |