diff options
| author | Paul Buetow <paul@buetow.org> | 2011-04-26 19:12:29 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2011-04-26 19:12:29 +0000 |
| commit | 4aae3132de0ff117290cdc5a8cebeb5bf467942f (patch) | |
| tree | ec63493694735a04f7eb345991f15e0f11537750 /Xerl | |
| parent | 67855afa02636e06b142c706487c5eb23efc5e8c (diff) | |
s/config/$config/
Diffstat (limited to 'Xerl')
| -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 e751de2..c50608c 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_shutdown(1); } elsif ( $config->env_exists() ) { print "Content-Type: text/plain\n\n"; print "$_=", $ENV{$_}, "\n" for keys %ENV; - config->set_shutdown(1); + $config->set_shutdown(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_shutdown(1); } return $self; |
