diff --git a/modules/widget/widget.controller.php b/modules/widget/widget.controller.php
index 449fc65fe..bf50c9d81 100644
--- a/modules/widget/widget.controller.php
+++ b/modules/widget/widget.controller.php
@@ -46,13 +46,16 @@
$style .= sprintf("%s:%spx;", "width", trim($vars->widget_width));
$style .= sprintf("margin:%dpx %dpx %dpx %dpx;", $vars->widget_margin_top, $vars->widget_margin_right,$vars->widget_margin_bottom,$vars->widget_margin_left);
if($vars->widget_position) $style .= sprintf("%s:%s;", "float", trim($vars->widget_position));
- else $style .= "clear:both;";
- if($vars->widget_cr == 'Y') $style .= "clear:left;";
+ else $style .= "clear:left;";
$widget_code = sprintf('

', $blank_img_path, $widget, implode(' ',$attribute), $style);
} else {
$widget_code = sprintf('

', $blank_img_path, $widget, implode(' ',$attribute));
}
+ $cache_path = './files/cache/widget_cache/';
+ $cache_file = sprintf('%s%d.%s.cache', $cache_path, $vars->widget_sequence, Context::getLangType());
+ @unlink($cache_file);
+
// 코드 출력
$this->add('widget_code', $widget_code);
}