diff options
author | ivan <ivan> | 1999-01-18 09:41:48 +0000 |
---|---|---|
committer | ivan <ivan> | 1999-01-18 09:41:48 +0000 |
commit | 183f64ede863fff923db7e00d962b3495e405477 (patch) | |
tree | 8156a023958ab999f9910327718a79348d799821 /htdocs/view/cust_bill.cgi | |
parent | c93520accf00e15095e7af5fcb59caed2bd9e556 (diff) |
all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
(good idea anyway)
Diffstat (limited to 'htdocs/view/cust_bill.cgi')
-rwxr-xr-x | htdocs/view/cust_bill.cgi | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/htdocs/view/cust_bill.cgi b/htdocs/view/cust_bill.cgi index 80aab187f..ccfc33c81 100755 --- a/htdocs/view/cust_bill.cgi +++ b/htdocs/view/cust_bill.cgi @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: cust_bill.cgi,v 1.4 1998-12-30 23:03:33 ivan Exp $ +# $Id: cust_bill.cgi,v 1.5 1999-01-18 09:41:42 ivan Exp $ # # Note: Should be run setuid freeside as user nobody. # @@ -25,7 +25,11 @@ # also print 'printed' field ivan@sisd.com 98-jul-10 # # $Log: cust_bill.cgi,v $ -# Revision 1.4 1998-12-30 23:03:33 ivan +# Revision 1.5 1999-01-18 09:41:42 ivan +# all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl +# (good idea anyway) +# +# Revision 1.4 1998/12/30 23:03:33 ivan # bugfixes; fields isn't exported by derived classes # # Revision 1.3 1998/12/23 03:07:49 ivan @@ -59,7 +63,7 @@ my($custnum) = $cust_bill->getfield('custnum'); my($printed) = $cust_bill->printed; my $p = popurl(2); -print $cgi->header, header('Invoice View', menubar( +print $cgi->header( '-expires' => 'now' ), header('Invoice View', menubar( "Main Menu" => $p, "View this customer (#$custnum)" => "${p}view/cust_main.cgi?$custnum", )), <<END; |