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/Page/Parameter.pm | |
| parent | 21a386d7b9f436c667a25bcca624bec65d68ea27 (diff) | |
s/shutdown/finish_request/
Diffstat (limited to 'Xerl/Page/Parameter.pm')
| -rw-r--r-- | Xerl/Page/Parameter.pm | 6 |
1 files changed, 3 insertions, 3 deletions
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; |
