-
Bug
-
Resolution: Won't Fix
-
Major
-
3.1.0-dev
-
None
includes/class_loader.php
$this->cached_paths = $cache->get('class_loader_' . $this->prefix);
|
should be:
|
$this->cached_paths = $cache->get('_class_loader_' . $this->prefix);
|
|
and
$this->cache->put('class_loader_' . $this->prefix, $this->cached_paths);
|
should be:
|
$this->cache->put('_class_loader_' . $this->prefix, $this->cached_paths);
|
|
hm no, that won't work...
otherwise it reloads the data_global.php cache every pageview new.