페이지 캐시파일 재생성시 페이지 자체의 캐시 기능에 의한 캐시파일도 지워지도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6126 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-04-16 02:22:15 +00:00
parent 5ae580e859
commit 847bdd9219

View file

@ -156,6 +156,9 @@
$content = $module_info->content;
$cache_file = sprintf("%sfiles/cache/page/%d.%s.cache.php", _XE_PATH_, $module_info->module_srl, Context::getLangType());
if(file_exists($cache_file)) FileHandler::removeFile($cache_file);
// widget controller 의 캐시파일 재생성 실행
$oWidgetController = &getController('widget');
$oWidgetController->recompileWidget($content);