#800 위젯 캐시 사용 시, 위젯이 제대로 출력되지 않는 버그 수정

This commit is contained in:
SMaker 2014-06-21 10:24:39 +09:00
parent cdc7378aae
commit 5b44577d7a

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;