diff options
author | ivan <ivan> | 2002-02-09 18:24:02 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-02-09 18:24:02 +0000 |
commit | 0bdec843e4a9bb7f947c9ba980a40f7bf37020fb (patch) | |
tree | 091a5f2de8c7b85362fd68eff63f111788c1b45c /httemplate/edit/process/cust_main_county.cgi | |
parent | 4609bb519b7fdf0eace6523fee49752cdb82a1ef (diff) |
no more exit() in templates
Diffstat (limited to 'httemplate/edit/process/cust_main_county.cgi')
-rwxr-xr-x | httemplate/edit/process/cust_main_county.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/edit/process/cust_main_county.cgi b/httemplate/edit/process/cust_main_county.cgi index 0f0246b73..e9d130897 100755 --- a/httemplate/edit/process/cust_main_county.cgi +++ b/httemplate/edit/process/cust_main_county.cgi @@ -1,4 +1,4 @@ -<!-- $Id: cust_main_county.cgi,v 1.3 2002-01-30 14:18:09 ivan Exp $ --> +<!-- $Id: cust_main_county.cgi,v 1.4 2002-02-09 18:24:01 ivan Exp $ --> <% foreach ( $cgi->param ) { @@ -14,7 +14,7 @@ foreach ( $cgi->param ) { if ( $error ) { $cgi->param('error', $error); print $cgi->redirect(popurl(2). "cust_main_county.cgi?". $cgi->query_string ); - exit; + myexit(); } } |