mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-11 19:24:01 +02:00
[feature/extension-manager] Use _ext for cache - avoids conflict with file ext
PHPBB3-10323
This commit is contained in:
@@ -66,7 +66,7 @@ class phpbb_extension_finder
|
||||
'directory' => false,
|
||||
);
|
||||
|
||||
$this->cached_queries = ($this->cache) ? $this->cache->get('_extension_finder') : false;
|
||||
$this->cached_queries = ($this->cache) ? $this->cache->get('_ext_finder') : false;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -284,7 +284,7 @@ class phpbb_extension_finder
|
||||
if ($cache && $this->cache)
|
||||
{
|
||||
$this->cached_queries[$query] = $files;
|
||||
$this->cache->put('_extension_finder', $this->cached_queries);
|
||||
$this->cache->put('_ext_finder', $this->cached_queries);
|
||||
}
|
||||
|
||||
return $files;
|
||||
|
Reference in New Issue
Block a user