mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
일반 위젯의 margin값이 누락되는 버그 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2985 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
f6a0403971
commit
1c71f2f005
1 changed files with 5 additions and 5 deletions
|
|
@ -91,12 +91,12 @@
|
|||
if(!$oWidget) return;
|
||||
|
||||
// 위젯 output을 생성하기 위한 변수 설정
|
||||
$margin_top = $args->widget_margin_top;
|
||||
$margin_bottom = $args->widget_margin_bottom;
|
||||
$margin_left = $args->widget_margin_left;
|
||||
$margin_right = $args->widget_margin_right;
|
||||
$widget_margin_top = $args->widget_margin_top;
|
||||
$widget_margin_bottom = $args->widget_margin_bottom;
|
||||
$widget_margin_left = $args->widget_margin_left;
|
||||
$widget_margin_right = $args->widget_margin_right;
|
||||
|
||||
$inner_style = sprintf("margin:%dpx %dpx %dpx %dpx !important; padding:none !important;", $margin_top, $margin_right, $margin_bottom, $margin_left);
|
||||
$inner_style = sprintf("margin:%dpx %dpx %dpx %dpx !important; padding:none !important;", $widget_margin_top, $widget_margin_right, $widget_margin_bottom, $widget_margin_left);
|
||||
|
||||
/**
|
||||
* 출력을 위해 위젯 내용을 div로 꾸밈
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue