diff options
| author | Paul Buetow (pluto.buetow.org) <paul@buetow.org> | 2013-09-07 15:07:51 +0200 |
|---|---|---|
| committer | Paul Buetow (pluto.buetow.org) <paul@buetow.org> | 2013-09-07 15:07:51 +0200 |
| commit | 366c463a2265ac3360286aa8450c721c3c28a60b (patch) | |
| tree | 2b248080ea71306b7f7df200a7e649341df729e7 | |
| parent | f8a84bc3c997ec43d500666327ecd8417f31a097 (diff) | |
fix
| -rw-r--r-- | Xerl.pm | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -42,7 +42,6 @@ use Xerl::Page::Document; use Xerl::Page::Parameter; use Xerl::Page::Request; use Xerl::Page::Templates; -use Xerl::Plugins::Session; sub run($) { my Xerl $self = $_[0]; @@ -58,10 +57,10 @@ sub run($) { $config->parse(); return undef if $config->finish_request_exists(); - unless ( $config->sessionsdisable_exists() ) { - my Xerl::Plugins::Session $session = - Xerl::Plugins::Session->new( config => $config ); + my Xerl::Plugins::Session $session = + Xerl::Plugins::Session->new( config => $config ); + unless ( $config->sessionsdisable_exists() ) { $session->process(); $config->set_session($session); } |
