diff options
Diffstat (limited to 'include/smarty/libs/internals')
-rw-r--r-- | include/smarty/libs/internals/core.process_compiled_include.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/smarty/libs/internals/core.process_compiled_include.php b/include/smarty/libs/internals/core.process_compiled_include.php index d539423bf..904d59745 100644 --- a/include/smarty/libs/internals/core.process_compiled_include.php +++ b/include/smarty/libs/internals/core.process_compiled_include.php @@ -25,7 +25,7 @@ function smarty_core_process_compiled_include($params, &$smarty) $smarty->_include($_include_file_path, true); } - foreach ($smarty->_cache_serials as $_include_file_path=>$_cache_serial) { + foreach ($smarty->_cache_info['cache_serials'] as $_include_file_path=>$_cache_serial) { $_return = preg_replace_callback('!(\{nocache\:('.$_cache_serial.')#(\d+)\})!s', array(&$smarty, '_process_compiled_include_callback'), $_return); |