More EMS code

Lots of bug fixes in commerce
Temp bug fix for stow->get, better fix needed
This commit is contained in:
Roy Johnson 2006-03-19 16:11:21 +00:00
parent abfa6ed1ac
commit 5bdaa49f95
6 changed files with 178 additions and 61 deletions

View file

@ -106,7 +106,8 @@ The name of the variable.
sub get {
my $self = shift;
my $var = shift;
return undef if $self->session->config->get("disableCache");
# wtf!? This line is breaking stuff, what does stow have to do with caching?
#return undef if $self->session->config->get("disableCache");
return $self->{_data}{$var};
}