From 54cb3fcc27ccd98405cecdc82889b0e29c518c6c Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 1 May 2011 18:13:20 +0000 Subject: s/shutdown/finish_request/ --- Xerl/Page/Parameter.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Xerl/Page/Parameter.pm') diff --git a/Xerl/Page/Parameter.pm b/Xerl/Page/Parameter.pm index 00dc516..47e1d28 100644 --- a/Xerl/Page/Parameter.pm +++ b/Xerl/Page/Parameter.pm @@ -46,12 +46,12 @@ sub parse($) { if ( $config->href_exists() ) { print "Location: ", $config->get_href(), "\n\n"; - $config->set_shutdown(1); + $config->set_finish_request(1); } elsif ( $config->env_exists() ) { print "Content-Type: text/plain\n\n"; print "$_=", $ENV{$_}, "\n" for keys %ENV; - $config->set_shutdown(1); + $config->set_finish_request(1); } if ( $config->devel_exists() ) { @@ -62,7 +62,7 @@ sub parse($) { if ( $config->conf_exists() ) { print "Content-Type: text/plain\n\n"; print "$_=", $config->{$_}, "\n" for keys %$config; - $config->set_shutdown(1); + $config->set_finish_request(1); } return $self; -- cgit v1.2.3