diff options
author | ivan <ivan> | 2001-10-26 10:24:56 +0000 |
---|---|---|
committer | ivan <ivan> | 2001-10-26 10:24:56 +0000 |
commit | 91387f8f489e561deaf1de052d80ef800a4970a3 (patch) | |
tree | ada548d8be00671f6a39d3b41229410bdf2f1e31 /httemplate/edit | |
parent | 1904d44bb20adf403e21513db7470153f751d605 (diff) |
cache foo
*sigh*
Diffstat (limited to 'httemplate/edit')
-rwxr-xr-x | httemplate/edit/agent.cgi | 4 | ||||
-rwxr-xr-x | httemplate/edit/agent_type.cgi | 4 | ||||
-rwxr-xr-x | httemplate/edit/cust_credit.cgi | 4 | ||||
-rwxr-xr-x | httemplate/edit/cust_credit_bill.cgi | 4 | ||||
-rwxr-xr-x | httemplate/edit/cust_main.cgi | 4 | ||||
-rwxr-xr-x | httemplate/edit/cust_main_county-expand.cgi | 4 | ||||
-rwxr-xr-x | httemplate/edit/cust_main_county.cgi | 4 | ||||
-rwxr-xr-x | httemplate/edit/cust_pay.cgi | 4 | ||||
-rwxr-xr-x | httemplate/edit/cust_pkg.cgi | 4 | ||||
-rwxr-xr-x | httemplate/edit/part_referral.cgi | 4 | ||||
-rwxr-xr-x | httemplate/edit/svc_acct.cgi | 4 | ||||
-rwxr-xr-x | httemplate/edit/svc_acct_pop.cgi | 4 | ||||
-rwxr-xr-x | httemplate/edit/svc_acct_sm.cgi | 4 | ||||
-rwxr-xr-x | httemplate/edit/svc_domain.cgi | 4 | ||||
-rwxr-xr-x | httemplate/edit/svc_forward.cgi | 4 |
15 files changed, 30 insertions, 30 deletions
diff --git a/httemplate/edit/agent.cgi b/httemplate/edit/agent.cgi index 236d05001..ea68b4768 100755 --- a/httemplate/edit/agent.cgi +++ b/httemplate/edit/agent.cgi @@ -1,5 +1,5 @@ <% -#<!-- $Id: agent.cgi,v 1.3 2001-08-29 09:11:30 ivan Exp $ --> +#<!-- $Id: agent.cgi,v 1.4 2001-10-26 10:24:56 ivan Exp $ --> use strict; use vars qw ( $cgi $agent $action $hashref $p $agent_type ); @@ -31,7 +31,7 @@ $hashref = $agent->hashref; $p = popurl(2); -print $cgi->header( '-expires' => 'now' ), header("$action Agent", menubar( +print $cgi->header( @FS::CGI::header ), header("$action Agent", menubar( 'Main Menu' => $p, 'View all agents' => $p. 'browse/agent.cgi', )); diff --git a/httemplate/edit/agent_type.cgi b/httemplate/edit/agent_type.cgi index ac41eec5c..eba2c2305 100755 --- a/httemplate/edit/agent_type.cgi +++ b/httemplate/edit/agent_type.cgi @@ -1,5 +1,5 @@ <% -#<!-- $Id: agent_type.cgi,v 1.3 2001-09-04 15:06:03 ivan Exp $ --> +#<!-- $Id: agent_type.cgi,v 1.4 2001-10-26 10:24:56 ivan Exp $ --> use strict; use vars qw( $cgi $agent_type $action $hashref $p $part_pkg ); @@ -32,7 +32,7 @@ $action = $agent_type->typenum ? 'Edit' : 'Add'; $hashref = $agent_type->hashref; $p = popurl(2); -print $cgi->header( '-expires' => 'now' ), header("$action Agent Type", menubar( +print $cgi->header( @FS::CGI::header ), header("$action Agent Type", menubar( 'Main Menu' => "$p", 'View all agent types' => "${p}browse/agent_type.cgi", )); diff --git a/httemplate/edit/cust_credit.cgi b/httemplate/edit/cust_credit.cgi index 9b215389a..3bfbfc8c4 100755 --- a/httemplate/edit/cust_credit.cgi +++ b/httemplate/edit/cust_credit.cgi @@ -1,5 +1,5 @@ <% -#<!-- $Id: cust_credit.cgi,v 1.3 2001-09-03 22:07:39 ivan Exp $ --> +#<!-- $Id: cust_credit.cgi,v 1.4 2001-10-26 10:24:56 ivan Exp $ --> use strict; use vars qw( $cgi $query $custnum $otaker $p1 $crednum $_date $amount $reason ); @@ -36,7 +36,7 @@ $otaker = getotaker; $p1 = popurl(1); -print $cgi->header( '-expires' => 'now' ), header("Post Credit", ''); +print $cgi->header( @FS::CGI::header ), header("Post Credit", ''); print qq!<FONT SIZE="+1" COLOR="#ff0000">Error: !, $cgi->param('error'), "</FONT>" if $cgi->param('error'); diff --git a/httemplate/edit/cust_credit_bill.cgi b/httemplate/edit/cust_credit_bill.cgi index 13bad1852..d2d50cbf6 100755 --- a/httemplate/edit/cust_credit_bill.cgi +++ b/httemplate/edit/cust_credit_bill.cgi @@ -1,5 +1,5 @@ <% -#<!-- $Id: cust_credit_bill.cgi,v 1.3 2001-09-03 22:07:39 ivan Exp $ --> +#<!-- $Id: cust_credit_bill.cgi,v 1.4 2001-10-26 10:24:56 ivan Exp $ --> use strict; use vars qw( $cgi $query $custnum $invnum $otaker $p1 $crednum $amount $reason $cust_credit ); @@ -38,7 +38,7 @@ $otaker = getotaker; $p1 = popurl(1); -print $cgi->header( '-expires' => 'now' ), header("Apply Credit", ''); +print $cgi->header( @FS::CGI::header ), header("Apply Credit", ''); print qq!<FONT SIZE="+1" COLOR="#ff0000">Error: !, $cgi->param('error'), "</FONT><BR><BR>" if $cgi->param('error'); diff --git a/httemplate/edit/cust_main.cgi b/httemplate/edit/cust_main.cgi index d271dad46..f5662fd87 100755 --- a/httemplate/edit/cust_main.cgi +++ b/httemplate/edit/cust_main.cgi @@ -1,5 +1,5 @@ <% -#<!-- $Id: cust_main.cgi,v 1.7 2001-10-15 11:35:28 ivan Exp $ --> +#<!-- $Id: cust_main.cgi,v 1.8 2001-10-26 10:24:56 ivan Exp $ --> use vars qw( $cgi $custnum $action $cust_main $p1 @agents $agentnum $last $first $ss $company $address1 $address2 $city $zip @@ -74,7 +74,7 @@ $action = $custnum ? 'Edit' : 'Add'; # top $p1 = popurl(1); -print $cgi->header( '-expires' => 'now' ), header("Customer $action", ''); +print $cgi->header( @FS::CGI::header ), header("Customer $action", ''); print qq!<FONT SIZE="+1" COLOR="#ff0000">Error: !, $error, "</FONT>" if $error; diff --git a/httemplate/edit/cust_main_county-expand.cgi b/httemplate/edit/cust_main_county-expand.cgi index 4460ee8ad..c344e91ae 100755 --- a/httemplate/edit/cust_main_county-expand.cgi +++ b/httemplate/edit/cust_main_county-expand.cgi @@ -1,5 +1,5 @@ <% -#<!-- $Id: cust_main_county-expand.cgi,v 1.3 2001-08-31 07:28:00 ivan Exp $ --> +#<!-- $Id: cust_main_county-expand.cgi,v 1.4 2001-10-26 10:24:56 ivan Exp $ --> use strict; use vars qw( $cgi $taxnum $cust_main_county $p1 $delim $expansion ); @@ -32,7 +32,7 @@ $cust_main_county = qsearchs('cust_main_county',{'taxnum'=>$taxnum}) die "Can't expand entry!" if $cust_main_county->getfield('county'); $p1 = popurl(1); -print $cgi->header( '-expires' => 'now' ), header("Tax Rate (expand)", menubar( +print $cgi->header( @FS::CGI::header ), header("Tax Rate (expand)", menubar( 'Main Menu' => popurl(2), )); diff --git a/httemplate/edit/cust_main_county.cgi b/httemplate/edit/cust_main_county.cgi index 6be349bc4..c25b6edd0 100755 --- a/httemplate/edit/cust_main_county.cgi +++ b/httemplate/edit/cust_main_county.cgi @@ -1,5 +1,5 @@ <% -#<!-- $Id: cust_main_county.cgi,v 1.3 2001-08-21 02:31:56 ivan Exp $ --> +#<!-- $Id: cust_main_county.cgi,v 1.4 2001-10-26 10:24:56 ivan Exp $ --> use strict; use vars qw( $cgi $cust_main_county ); @@ -14,7 +14,7 @@ $cgi = new CGI; &cgisuidsetup($cgi); -print $cgi->header( '-expires' => 'now' ), header("Edit tax rates", menubar( +print $cgi->header( @FS::CGI::header ), header("Edit tax rates", menubar( 'Main Menu' => popurl(2), )); diff --git a/httemplate/edit/cust_pay.cgi b/httemplate/edit/cust_pay.cgi index c83f585d1..a9506c8ed 100755 --- a/httemplate/edit/cust_pay.cgi +++ b/httemplate/edit/cust_pay.cgi @@ -1,5 +1,5 @@ <% -#<!-- $Id: cust_pay.cgi,v 1.3 2001-09-03 22:07:39 ivan Exp $ --> +#<!-- $Id: cust_pay.cgi,v 1.4 2001-10-26 10:24:56 ivan Exp $ --> use strict; use vars qw( $cgi $link $linknum $p1 $_date $payby $payinfo $paid ); @@ -38,7 +38,7 @@ if ( $cgi->param('error') ) { $_date = time; $p1 = popurl(1); -print $cgi->header( '-expires' => 'now' ), header("Enter payment", ''); +print $cgi->header( @FS::CGI::header ), header("Enter payment", ''); print qq!<FONT SIZE="+1" COLOR="#ff0000">Error: !, $cgi->param('error'), "</FONT>" diff --git a/httemplate/edit/cust_pkg.cgi b/httemplate/edit/cust_pkg.cgi index 729fc7c98..ea92ac05e 100755 --- a/httemplate/edit/cust_pkg.cgi +++ b/httemplate/edit/cust_pkg.cgi @@ -1,5 +1,5 @@ <% -#<!-- $Id: cust_pkg.cgi,v 1.2 2001-08-21 02:31:56 ivan Exp $ --> +#<!-- $Id: cust_pkg.cgi,v 1.3 2001-10-26 10:24:56 ivan Exp $ --> use strict; use vars qw( $cgi %pkg %comment $custnum $p1 @cust_pkg @@ -33,7 +33,7 @@ if ( $cgi->param('error') ) { } $p1 = popurl(1); -print $cgi->header( '-expires' => 'now' ), header("Add/Edit Packages", ''); +print $cgi->header( @FS::CGI::header ), header("Add/Edit Packages", ''); print qq!<FONT SIZE="+1" COLOR="#ff0000">Error: !, $cgi->param('error'), "</FONT>" diff --git a/httemplate/edit/part_referral.cgi b/httemplate/edit/part_referral.cgi index 9ed8977cd..06f416903 100755 --- a/httemplate/edit/part_referral.cgi +++ b/httemplate/edit/part_referral.cgi @@ -1,5 +1,5 @@ <% -#<!-- $Id: part_referral.cgi,v 1.2 2001-08-21 02:31:56 ivan Exp $ --> +#<!-- $Id: part_referral.cgi,v 1.3 2001-10-26 10:24:56 ivan Exp $ --> use strict; use vars qw( $cgi $part_referral $action $hashref $p1 $query ); @@ -29,7 +29,7 @@ $action = $part_referral->refnum ? 'Edit' : 'Add'; $hashref = $part_referral->hashref; $p1 = popurl(1); -print $cgi->header( '-expires' => 'now' ), header("$action Referral", menubar( +print $cgi->header( @FS::CGI::header ), header("$action Referral", menubar( 'Main Menu' => popurl(2), 'View all referrals' => popurl(2). "browse/part_referral.cgi", )); diff --git a/httemplate/edit/svc_acct.cgi b/httemplate/edit/svc_acct.cgi index 3d0bb0134..8a558613e 100755 --- a/httemplate/edit/svc_acct.cgi +++ b/httemplate/edit/svc_acct.cgi @@ -1,5 +1,5 @@ <% -#<!-- $Id: svc_acct.cgi,v 1.10 2001-10-20 12:18:00 ivan Exp $ --> +#<!-- $Id: svc_acct.cgi,v 1.11 2001-10-26 10:24:56 ivan Exp $ --> use strict; use vars qw( $conf $cgi @shells $action $svcnum $svc_acct $pkgnum $svcpart @@ -101,7 +101,7 @@ $ulen = $svc_acct->dbdef_table->column('username')->length; $ulen2 = $ulen+2; $p1 = popurl(1); -print $cgi->header( '-expires' => 'now' ), header("$action $svc account"); +print $cgi->header( @FS::CGI::header ), header("$action $svc account"); print qq!<FONT SIZE="+1" COLOR="#ff0000">Error: !, $cgi->param('error'), "</FONT><BR><BR>" diff --git a/httemplate/edit/svc_acct_pop.cgi b/httemplate/edit/svc_acct_pop.cgi index 5f1d15e26..3ba0f1439 100755 --- a/httemplate/edit/svc_acct_pop.cgi +++ b/httemplate/edit/svc_acct_pop.cgi @@ -1,5 +1,5 @@ <% -#<!-- $Id: svc_acct_pop.cgi,v 1.2 2001-08-21 02:31:56 ivan Exp $ --> +#<!-- $Id: svc_acct_pop.cgi,v 1.3 2001-10-26 10:24:56 ivan Exp $ --> use strict; use vars qw( $cgi $svc_acct_pop $action $query $hashref $p1 ); @@ -27,7 +27,7 @@ $action = $svc_acct_pop->popnum ? 'Edit' : 'Add'; $hashref = $svc_acct_pop->hashref; $p1 = popurl(1); -print $cgi->header( '-expires' => 'now' ), header("$action POP", menubar( +print $cgi->header( @FS::CGI::header ), header("$action POP", menubar( 'Main Menu' => popurl(2), 'View all POPs' => popurl(2). "browse/svc_acct_pop.cgi", )); diff --git a/httemplate/edit/svc_acct_sm.cgi b/httemplate/edit/svc_acct_sm.cgi index 21bd6a9ee..4497b5f59 100755 --- a/httemplate/edit/svc_acct_sm.cgi +++ b/httemplate/edit/svc_acct_sm.cgi @@ -1,5 +1,5 @@ <% -#<!-- $Id: svc_acct_sm.cgi,v 1.4 2001-09-11 23:44:01 ivan Exp $ --> +#<!-- $Id: svc_acct_sm.cgi,v 1.5 2001-10-26 10:24:56 ivan Exp $ --> use strict; use vars qw( $conf $cgi $mydomain $action $svcnum $svc_acct_sm $pkgnum $svcpart @@ -128,7 +128,7 @@ if ($pkgnum) { } $p1 = popurl(1); -print $cgi->header( '-expires' => 'now' ), header("Mail Alias $action", ''); +print $cgi->header( @FS::CGI::header ), header("Mail Alias $action", ''); print qq!<FONT SIZE="+1" COLOR="#ff0000">Error: !, $cgi->param('error'), "</FONT>" diff --git a/httemplate/edit/svc_domain.cgi b/httemplate/edit/svc_domain.cgi index a1a61723d..971088d21 100755 --- a/httemplate/edit/svc_domain.cgi +++ b/httemplate/edit/svc_domain.cgi @@ -1,5 +1,5 @@ <% -#<!-- $Id: svc_domain.cgi,v 1.4 2001-10-25 21:24:12 ivan Exp $ --> +#<!-- $Id: svc_domain.cgi,v 1.5 2001-10-26 10:24:56 ivan Exp $ --> use strict; use vars qw( $cgi $action $svcnum $svc_domain $pkgnum $svcpart $part_svc @@ -77,7 +77,7 @@ $otaker = getotaker; $domain = $svc_domain->domain; $p1 = popurl(1); -print $cgi->header( '-expires' => 'now' ), header("$action $svc", ''); +print $cgi->header( @FS::CGI::header ), header("$action $svc", ''); print qq!<FONT SIZE="+1" COLOR="#ff0000">Error: !, $cgi->param('error'), "</FONT>" diff --git a/httemplate/edit/svc_forward.cgi b/httemplate/edit/svc_forward.cgi index 287833e53..0529c2b86 100755 --- a/httemplate/edit/svc_forward.cgi +++ b/httemplate/edit/svc_forward.cgi @@ -1,5 +1,5 @@ <% -# <!-- $Id: svc_forward.cgi,v 1.4 2001-09-11 23:44:01 ivan Exp $ --> +# <!-- $Id: svc_forward.cgi,v 1.5 2001-10-26 10:24:56 ivan Exp $ --> use strict; use vars qw( $conf $cgi $mydomain $action $svcnum $svc_forward $pkgnum $svcpart @@ -128,7 +128,7 @@ if ($pkgnum) { #display $p1 = popurl(1); -print $cgi->header( '-expires' => 'now' ), header("Mail Forward $action", '', +print $cgi->header( @FS::CGI::header ), header("Mail Forward $action", '', " onLoad=\"visualize()\""); %> |