mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 10:24:26 +02:00
fixed wrong $auto_id in _read_cache_file()
This commit is contained in:
@@ -2327,7 +2327,7 @@ class Smarty
|
|||||||
} else {
|
} else {
|
||||||
// use local cache file
|
// use local cache file
|
||||||
if (isset($cache_id))
|
if (isset($cache_id))
|
||||||
$auto_id = (isset($compile_id)) ? $compile_id . '|' . $cache_id : $cache_id;
|
$auto_id = (isset($compile_id)) ? $cache_id . '|' . $compile_id : $cache_id;
|
||||||
elseif(isset($compile_id))
|
elseif(isset($compile_id))
|
||||||
$auto_id = $compile_id;
|
$auto_id = $compile_id;
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user