From 350793b042325ffa3425251ee76794224f8493ec Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 1 Jan 2013 12:29:28 +0000 Subject: [PATCH] More of the same. --- Webperl/Application.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Webperl/Application.pm b/Webperl/Application.pm index d0e381a..c178888 100644 --- a/Webperl/Application.pm +++ b/Webperl/Application.pm @@ -200,7 +200,7 @@ sub run { auth => $self -> {"auth"}, template => $self -> {"template"}, settings => $self -> {"settings"}) - or $self -> {"logger"} -> die_log($self -> {"cgi"} -> remote_host(), "Application: Unable to create session object: ".$SessionHandler::errstr); + or $self -> {"logger"} -> die_log($self -> {"cgi"} -> remote_host(), "Application: Unable to create session object: ".$Webperl::SessionHandler::errstr); # At this point, there's potentially a real user associated with the session. If appropriate, # update the template theme and language @@ -227,7 +227,7 @@ sub run { blockdir => $self -> {"settings"} -> {"paths"} -> {"blocks"} || "blocks", system => $self -> {"system"}, messages => $self -> {"messages"}) - or $self -> {"logger"} -> die_log($self -> {"cgi"} -> remote_host(), "Application: Unable to create module handling object: ".$Modules::errstr); + or $self -> {"logger"} -> die_log($self -> {"cgi"} -> remote_host(), "Application: Unable to create module handling object: ".$Webperl::Modules::errstr); $self -> {"messages"} -> set_module_obj($self -> {"modules"});