Merge pull request #803 from smaker/develop

#800 템플릿 캐시 적용 시, 위젯 캐시가 지정된 위젯을 제대로 출력하지 못하는 버그 수정
This commit is contained in:
akasima 2014-07-02 18:54:32 +09:00
commit 73224e8766

View file

@ -409,7 +409,10 @@ class widgetController extends widget
}
}
// cache update and cache renewal of the file mtime
touch($cache_file);
if(!$oCacheHandler->isSupport())
{
touch($cache_file);
}
$oWidget = $this->getWidgetObject($widget);
if(!$oWidget || !method_exists($oWidget,'proc')) return;