summaryrefslogtreecommitdiff
path: root/htdocs/search
diff options
context:
space:
mode:
authorivan <ivan>1999-01-18 09:41:48 +0000
committerivan <ivan>1999-01-18 09:41:48 +0000
commit183f64ede863fff923db7e00d962b3495e405477 (patch)
tree8156a023958ab999f9910327718a79348d799821 /htdocs/search
parentc93520accf00e15095e7af5fcb59caed2bd9e556 (diff)
all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
(good idea anyway)
Diffstat (limited to 'htdocs/search')
-rwxr-xr-xhtdocs/search/cust_main.cgi10
-rwxr-xr-xhtdocs/search/cust_pkg.cgi10
-rwxr-xr-xhtdocs/search/svc_acct.cgi10
-rwxr-xr-xhtdocs/search/svc_acct_sm.cgi10
4 files changed, 28 insertions, 12 deletions
diff --git a/htdocs/search/cust_main.cgi b/htdocs/search/cust_main.cgi
index 262c1579c..48e88539b 100755
--- a/htdocs/search/cust_main.cgi
+++ b/htdocs/search/cust_main.cgi
@@ -1,6 +1,6 @@
#!/usr/bin/perl -Tw
#
-# $Id: cust_main.cgi,v 1.4 1998-12-30 00:57:50 ivan Exp $
+# $Id: cust_main.cgi,v 1.5 1999-01-18 09:41:37 ivan Exp $
#
# Usage: post form to:
# http://server.name/path/cust_main.cgi
@@ -19,7 +19,11 @@
# display total, use FS::CGI ivan@sisd.com 98-jul-17
#
# $Log: cust_main.cgi,v $
-# Revision 1.4 1998-12-30 00:57:50 ivan
+# Revision 1.5 1999-01-18 09:41:37 ivan
+# all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
+# (good idea anyway)
+#
+# Revision 1.4 1998/12/30 00:57:50 ivan
# bug
#
# Revision 1.3 1998/12/17 09:41:08 ivan
@@ -82,7 +86,7 @@ if ( scalar(@cust_main) == 1 ) {
} else {
my($total)=scalar(@cust_main);
- print $cgi->header, header("Customer Search Results",menubar(
+ print $cgi->header( '-expires' => 'now' ), header("Customer Search Results",menubar(
'Main Menu', popurl(2)
)), "$total matching customers found<BR>", table, <<END;
<TR>
diff --git a/htdocs/search/cust_pkg.cgi b/htdocs/search/cust_pkg.cgi
index c198a56b6..248833ce1 100755
--- a/htdocs/search/cust_pkg.cgi
+++ b/htdocs/search/cust_pkg.cgi
@@ -1,11 +1,15 @@
#!/usr/bin/perl -Tw
#
-# $Id: cust_pkg.cgi,v 1.4 1999-01-18 09:22:33 ivan Exp $
+# $Id: cust_pkg.cgi,v 1.5 1999-01-18 09:41:38 ivan Exp $
#
# based on search/svc_acct.cgi ivan@sisd.com 98-jul-17
#
# $Log: cust_pkg.cgi,v $
-# Revision 1.4 1999-01-18 09:22:33 ivan
+# Revision 1.5 1999-01-18 09:41:38 ivan
+# all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
+# (good idea anyway)
+#
+# Revision 1.4 1999/01/18 09:22:33 ivan
# changes to track email addresses for email invoicing
#
# Revision 1.3 1998/12/23 03:05:59 ivan
@@ -68,7 +72,7 @@ if ( scalar(@cust_pkg) == 1 ) {
exit;
} else {
my($total)=scalar(@cust_pkg);
- print $cgi->header, header('Package Search Results',''), <<END;
+ print $cgi->header( '-expires' => 'now' ), header('Package Search Results',''), <<END;
$total matching packages found
<TABLE BORDER=4 CELLSPACING=0 CELLPADDING=0>
<TR>
diff --git a/htdocs/search/svc_acct.cgi b/htdocs/search/svc_acct.cgi
index 75fbcb9b7..5dd33a678 100755
--- a/htdocs/search/svc_acct.cgi
+++ b/htdocs/search/svc_acct.cgi
@@ -1,6 +1,6 @@
#!/usr/bin/perl -Tw
#
-# $Id: svc_acct.cgi,v 1.4 1999-01-18 09:22:34 ivan Exp $
+# $Id: svc_acct.cgi,v 1.5 1999-01-18 09:41:39 ivan Exp $
#
# Usage: post form to:
# http://server.name/path/svc_acct.cgi
@@ -23,7 +23,11 @@
# give service and customer info too ivan@sisd.com 98-aug-16
#
# $Log: svc_acct.cgi,v $
-# Revision 1.4 1999-01-18 09:22:34 ivan
+# Revision 1.5 1999-01-18 09:41:39 ivan
+# all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
+# (good idea anyway)
+#
+# Revision 1.4 1999/01/18 09:22:34 ivan
# changes to track email addresses for email invoicing
#
# Revision 1.3 1998/12/23 03:06:28 ivan
@@ -90,7 +94,7 @@ if ( scalar(@svc_acct) == 1 ) {
exit;
} else {
my($total)=scalar(@svc_acct);
- print $cgi->header, header("Account Search Results",''), <<END;
+ print $cgi->header( '-expires' => 'now' ), header("Account Search Results",''), <<END;
$total matching accounts found
<TABLE BORDER=4 CELLSPACING=0 CELLPADDING=0>
<TR>
diff --git a/htdocs/search/svc_acct_sm.cgi b/htdocs/search/svc_acct_sm.cgi
index 824a551c7..c1c593673 100755
--- a/htdocs/search/svc_acct_sm.cgi
+++ b/htdocs/search/svc_acct_sm.cgi
@@ -1,6 +1,6 @@
#!/usr/bin/perl -Tw
#
-# $Id: svc_acct_sm.cgi,v 1.3 1998-12-17 09:41:11 ivan Exp $
+# $Id: svc_acct_sm.cgi,v 1.4 1999-01-18 09:41:40 ivan Exp $
#
# Usage: post form to:
# http://server.name/path/svc_domain.cgi
@@ -19,7 +19,11 @@
# bmccane@maxbaud.net 98-apr-3
#
# $Log: svc_acct_sm.cgi,v $
-# Revision 1.3 1998-12-17 09:41:11 ivan
+# Revision 1.4 1999-01-18 09:41:40 ivan
+# all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
+# (good idea anyway)
+#
+# Revision 1.3 1998/12/17 09:41:11 ivan
# s/CGI::(Base|Request)/CGI.pm/;
#
@@ -61,7 +65,7 @@ if ( scalar(@svc_acct_sm) == 1 ) {
print $cgi->redirect(popurl(2). "view/svc_acct_sm.cgi?$svcnum"); #redirect
} elsif ( scalar(@svc_acct_sm) > 1 ) {
CGI::Base::SendHeaders();
- print $cgi->header, header('Mail Alias Search Results'), table, <<END;
+ print $cgi->header( '-expires' => 'now' ), header('Mail Alias Search Results'), table, <<END;
<TR>
<TH>Mail to<BR><FONT SIZE=-2>(click here to view mail alias)</FONT></TH>
<TH>Forwards to<BR><FONT SIZE=-2>(click here to view account)</FONT></TH>