summaryrefslogtreecommitdiff
path: root/htetc
diff options
context:
space:
mode:
Diffstat (limited to 'htetc')
-rw-r--r--htetc/global.asa6
1 files changed, 5 insertions, 1 deletions
diff --git a/htetc/global.asa b/htetc/global.asa
index c7056fc03..5b0ac4991 100644
--- a/htetc/global.asa
+++ b/htetc/global.asa
@@ -73,7 +73,7 @@ sub Script_OnStart {
$p = popurl(2);
#print $cgi->header( '-expires' => 'now' );
#dbh->{'private_profile'} = {} if dbh->can('sprintProfile');
- dbh->{'private_profile'} = {} if UNIVERSAL::can(dbh, 'sprintProfile') );
+ dbh->{'private_profile'} = {} if UNIVERSAL::can(dbh, 'sprintProfile');
#really should check for FS::Profiler or something
# Devel::AutoProfiler _our_ VERSION? thanks a fucking lot
@@ -191,5 +191,9 @@ sub sprintAutoProfile {
}
+sub include {
+ $Response->Include(@_);
+}
+
1;