added exceptions, docs, and removed disableCache

This commit is contained in:
JT Smith 2009-09-25 18:41:03 -05:00
parent a34f584780
commit af705232a8
7 changed files with 224 additions and 107 deletions

View file

@ -467,7 +467,6 @@ sub open {
$sessionId = $self->id->generate unless $self->id->valid($sessionId);
my $noFuss = shift;
$self->{_var} = WebGUI::Session::Var->new($self,$sessionId, $noFuss);
$self->errorHandler->warn("You've disabled cache in your config file and that can cause many problems on a production site.") if ($config->get("disableCache"));
return $self;
}