Central cache access for Assets to handle SSL caching. Fixes bug #11131.
This commit is contained in:
parent
f35a9af1fe
commit
5bd5bb48a9
11 changed files with 40 additions and 15 deletions
|
|
@ -279,7 +279,8 @@ sub view {
|
|||
|| $self->get("cacheTimeout") <= 10
|
||||
|| ($versionTag && $versionTag->getId eq $self->get("tagId"));
|
||||
unless ($noCache) {
|
||||
my $out = WebGUI::Cache->new($session,"view_".$calledAsWebMethod."_".$self->getId)->get;
|
||||
my $cache = $self->getCache;
|
||||
my $out = $cache->get if defined $cache;
|
||||
return $out if $out;
|
||||
}
|
||||
my $output = $self->get('usePacked')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue