From 1b8e58a69919764e24e1f2a28964f36047e2c198 Mon Sep 17 00:00:00 2001 From: Martin McGrath Date: Tue, 13 Jan 2015 09:47:25 +0000 Subject: [PATCH] Revert "Update Application.pm - Update dump_html()" --- lib/CGI/Application.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/CGI/Application.pm b/lib/CGI/Application.pm index 08211d7..3aeb6bd 100644 --- a/lib/CGI/Application.pm +++ b/lib/CGI/Application.pm @@ -353,7 +353,7 @@ sub dump { sub dump_html { my $self = shift; my $query = $self->query(); - my $output = $query->start_html; + my $output = ''; # Dump run-mode my $current_runmode = $self->get_current_runmode(); @@ -374,7 +374,7 @@ sub dump_html { ); } $output .= "\n"; - $output .= $query->end_html(); + return $output; }