X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=smarty%2Finternals%2Fcore.process_compiled_include.php;fp=smarty%2Finternals%2Fcore.process_compiled_include.php;h=0000000000000000000000000000000000000000;hb=64fca63a29fb2a863d159734627795acfb17c853;hp=d539423bf740ee58787d4352a9e83b2990696b1f;hpb=cb2adba7030b7a2eba73afa7e4ec1f48b57a6073;p=contagged diff --git a/smarty/internals/core.process_compiled_include.php b/smarty/internals/core.process_compiled_include.php deleted file mode 100644 index d539423..0000000 --- a/smarty/internals/core.process_compiled_include.php +++ /dev/null @@ -1,37 +0,0 @@ -_cache_including; - $smarty->_cache_including = true; - - $_return = $params['results']; - - foreach ($smarty->_cache_info['cache_serials'] as $_include_file_path=>$_cache_serial) { - $smarty->_include($_include_file_path, true); - } - - foreach ($smarty->_cache_serials as $_include_file_path=>$_cache_serial) { - $_return = preg_replace_callback('!(\{nocache\:('.$_cache_serial.')#(\d+)\})!s', - array(&$smarty, '_process_compiled_include_callback'), - $_return); - } - $smarty->_cache_including = $_cache_including; - return $_return; -} - -?>