Fix styling of cached widget

This commit is contained in:
Kijin Sung 2016-04-17 16:22:48 +09:00
parent 884aba864e
commit 8bd7f6e466

View file

@ -395,7 +395,7 @@ class widgetController extends widget
$cache_data = Rhymix\Framework\Cache::get('widget_cache:' . $widget_sequence);
if ($cache_data)
{
return $cache_data;
return preg_replace('@<\!--#Meta:@', '<!--Meta:', $cache_data);
}
$oWidget = $this->getWidgetObject($widget);