diff options
author | ivan <ivan> | 2004-04-23 12:50:34 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-04-23 12:50:34 +0000 |
commit | 686e4d8cf9a69012cbf92983a787644d583bdcd8 (patch) | |
tree | c59958e6575d7d970aec3d92cb9a09860e198874 /htetc/global.asa | |
parent | 87227cd405166484ca7b791b2bd3c8829ce8d969 (diff) |
fix up includes with Apache::ASP
Diffstat (limited to 'htetc/global.asa')
-rw-r--r-- | htetc/global.asa | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/htetc/global.asa b/htetc/global.asa index dace29527..4358e87b1 100644 --- a/htetc/global.asa +++ b/htetc/global.asa @@ -197,9 +197,8 @@ sub sprintAutoProfile { } sub include { - ( my $file = shift ) =~ s(^/)(); - $Response->Include($file, @_); - ''; + ( my $file = shift ) =~ s(^/)(%%%FREESIDE_DOCUMENT_ROOT%%%/); + ${$Response->TrapInclude($file, @_)}; } if ( defined(@DBIx::Profile::ISA) ) { |