mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-10 18:54:08 +02:00
- fix some bugs...
git-svn-id: file:///svn/phpbb/trunk@5643 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -301,7 +301,7 @@ class cache extends acm
|
||||
|
||||
foreach ($parsed_items as $key => $parsed_array)
|
||||
{
|
||||
$parsed_array = $this->get('_cfg_' . $key);
|
||||
$parsed_array = $this->get('_cfg_' . $key . '_' . $theme[$key . '_path']);
|
||||
|
||||
if (!$parsed_array)
|
||||
{
|
||||
@@ -327,7 +327,7 @@ class cache extends acm
|
||||
$parsed_array = parse_cfg_file($filename);
|
||||
$parsed_array['filetime'] = @filemtime($filename);
|
||||
|
||||
$this->put('_cfg_' . $key, $parsed_array);
|
||||
$this->put('_cfg_' . $key . '_' . $theme[$key . '_path'], $parsed_array);
|
||||
}
|
||||
$parsed_items[$key] = $parsed_array;
|
||||
}
|
||||
|
Reference in New Issue
Block a user