From ad26b57f18ae4c60d6968e917fbe5361055eb6da Mon Sep 17 00:00:00 2001 From: messju Date: Fri, 21 Mar 2003 09:36:16 +0000 Subject: [PATCH] fixed wrong $auto_id in _read_cache_file() --- libs/Smarty.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/Smarty.class.php b/libs/Smarty.class.php index f0e98841..a3577a3e 100644 --- a/libs/Smarty.class.php +++ b/libs/Smarty.class.php @@ -2327,7 +2327,7 @@ class Smarty } else { // use local cache file 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)) $auto_id = $compile_id; else