SessionHandler doesn't need Template!

This commit is contained in:
Chris 2012-04-12 18:07:18 +01:00
parent efb7068f1d
commit 5ce1419eef

View File

@ -149,7 +149,6 @@ sub new {
cgi => undef,
dbh => undef,
auth => undef,
template => undef,
settings => undef,
@_,
};
@ -158,7 +157,6 @@ sub new {
return set_error("cgi object not set") unless($self -> {"cgi"});
return set_error("dbh object not set") unless($self -> {"dbh"});
return set_error("auth object not set") unless($self -> {"auth"});
return set_error("template object not set") unless($self -> {"template"});
return set_error("settings object not set") unless($self -> {"settings"});
# Bless class so we canuse it properly