diff options
author | ivan <ivan> | 2004-05-01 03:54:50 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-05-01 03:54:50 +0000 |
commit | 93a8bcc4ddde083b9da915986e32231530bbcb5e (patch) | |
tree | 19ab682a83751c29365cd7cb93f78d5cedd80051 /htetc | |
parent | 7404fa4a193912074a9e63f9db891abf2b399b78 (diff) |
very weird 5.005 problem
Diffstat (limited to 'htetc')
-rw-r--r-- | htetc/global.asa | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/htetc/global.asa b/htetc/global.asa index 4358e87b1..55cc8ed94 100644 --- a/htetc/global.asa +++ b/htetc/global.asa @@ -198,7 +198,9 @@ sub sprintAutoProfile { sub include { ( my $file = shift ) =~ s(^/)(%%%FREESIDE_DOCUMENT_ROOT%%%/); - ${$Response->TrapInclude($file, @_)}; + #broken in 5.005# ${$Response->TrapInclude($file, @_)}; + my $ref = $Response->TrapInclude($file, @_); + $$ref; } if ( defined(@DBIx::Profile::ISA) ) { |