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.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Xerl.pm') diff --git a/Xerl.pm b/Xerl.pm index 462087d..12f6095 100644 --- a/Xerl.pm +++ b/Xerl.pm @@ -56,7 +56,7 @@ sub run($) { Xerl::Page::Configure->new( config => $self->get_config(), %$request ); $config->parse(); - return undef if $config->shutdown_exists(); + return undef if $config->finish_request_exists(); # TODO: Plugin API unless ( $config->sessionsdisable_exists() ) { @@ -71,14 +71,14 @@ sub run($) { Xerl::Page::Parameter->new( config => $config ); $parameter->parse(); - return undef if $config->shutdown_exists(); + return undef if $config->finish_request_exists(); if ( $config->document_exists() ) { my Xerl::Page::Document $document = Xerl::Page::Document->new( config => $config ); $document->parse(); - return undef if $config->shutdown_exists(); + return undef if $config->finish_request_exists(); } else { @@ -86,7 +86,7 @@ sub run($) { Xerl::Page::Templates->new( config => $config ); $templates->parse(); - return undef if $config->shutdown_exists(); + return undef if $config->finish_request_exists(); $templates->print($time); } -- cgit v1.2.3