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 /site_perl | |
parent | c93520accf00e15095e7af5fcb59caed2bd9e556 (diff) |
all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl
(good idea anyway)
Diffstat (limited to 'site_perl')
-rw-r--r-- | site_perl/CGI.pm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/site_perl/CGI.pm b/site_perl/CGI.pm index 136a05cf7..97dedaddf 100644 --- a/site_perl/CGI.pm +++ b/site_perl/CGI.pm @@ -90,7 +90,7 @@ sub idiot { no strict 'subs'; &CGI::Base::SendHeaders; } else { - print $cgi->header; + print $cgi->header( '-expires' => 'now' ); } print <<END; <HTML> @@ -193,7 +193,11 @@ lose the background, eidiot ivan@sisd.com 98-sep-2 pod ivan@sisd.com 98-sep-12 $Log: CGI.pm,v $ -Revision 1.14 1999-01-18 09:22:37 ivan +Revision 1.15 1999-01-18 09:41:48 ivan +all $cgi->header calls now include ( '-expires' => 'now' ) for mod_perl +(good idea anyway) + +Revision 1.14 1999/01/18 09:22:37 ivan changes to track email addresses for email invoicing Revision 1.12 1998/12/23 02:23:16 ivan |