From 9f69daa6b11920b84840c17bf95955dee959367e Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 9 Mar 2006 13:42:40 +0000 Subject: [PATCH] fix that blank-page-instead-of-profiling-redirect-when-called-from-an-include bug triggered by mason 1.32 :) --- htetc/handler.pl | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/htetc/handler.pl b/htetc/handler.pl index 15f9203f8..9b808e68c 100644 --- a/htetc/handler.pl +++ b/htetc/handler.pl @@ -247,10 +247,8 @@ sub handler sub redirect { my( $location ) = @_; - warn 'redir1 $m='.$m; use vars qw($m); $m->clear_buffer; - warn 'redir3-prof'; #false laziness w/above if ( defined(@DBIx::Profile::ISA) ) { #profiling redirect @@ -267,14 +265,13 @@ sub handler ); dbh->{'private_profile'} = {}; - warn 'redir9-prof'; - my $rv = $m->abort(200); - warn "redir10-prof: $rv"; - $rv; + #whew. removing this is all that's needed to fix the annoying + #blank-page-instead-of-profiling-redirect-when-called-from-an-include + #bug triggered by mason 1.32 + #my $rv = $m->abort(200); } else { #normal redirect - warn 'redir9-redirect'; $m->redirect($location); } -- 2.11.0