mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 16:56:44 +02:00
[feature/extension-manager] Use _ext for cache - avoids conflict with file ext
PHPBB3-10323
This commit is contained in:
@@ -45,7 +45,7 @@ class phpbb_extension_manager
|
||||
$this->phpEx = $phpEx;
|
||||
$this->extension_table = $extension_table;
|
||||
|
||||
$this->extensions = $this->cache->get('_extensions');
|
||||
$this->extensions = $this->cache->get('_ext');
|
||||
|
||||
if ($this->extensions === false)
|
||||
{
|
||||
@@ -75,7 +75,7 @@ class phpbb_extension_manager
|
||||
}
|
||||
|
||||
ksort($this->extensions);
|
||||
$this->cache->put('_extensions', $this->extensions);
|
||||
$this->cache->put('_ext', $this->extensions);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user