diff options
| author | Paul Buetow <paul@buetow.org> | 2011-05-01 18:13:20 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2011-05-01 18:13:20 +0000 |
| commit | 54cb3fcc27ccd98405cecdc82889b0e29c518c6c (patch) | |
| tree | 58f9bf3fcee4983b793a2cfaff372060b0adb831 /Xerl.pm | |
| parent | 21a386d7b9f436c667a25bcca624bec65d68ea27 (diff) | |
s/shutdown/finish_request/
Diffstat (limited to 'Xerl.pm')
| -rw-r--r-- | Xerl.pm | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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); } |
