mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-29 07:12:15 +09:00
이미지 위젯 - 가로, 세로 갯수 설정이 바뀐 오류 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2652 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
a441f43674
commit
faf31a9b21
1 changed files with 5 additions and 5 deletions
|
|
@ -23,13 +23,13 @@
|
|||
$widget_info->thumbnail_width = (int)$args->thumbnail_width;
|
||||
if(!$widget_info->thumbnail_width) $widget_info->thumbnail_width = 100;
|
||||
|
||||
// 가로 이미지 수
|
||||
$widget_info->rows_list_count = (int)$args->rows_list_count;
|
||||
if(!$widget_info->rows_list_count) $widget_info->rows_list_count = 5;
|
||||
|
||||
// 세로 이미지 수
|
||||
$widget_info->rows_list_count = (int)$args->rows_list_count;
|
||||
if(!$widget_info->rows_list_count) $widget_info->rows_list_count = 1;
|
||||
|
||||
// 가로 이미지 수
|
||||
$widget_info->cols_list_count = (int)$args->cols_list_count;
|
||||
if(!$widget_info->cols_list_count) $widget_info->cols_list_count = 1;
|
||||
if(!$widget_info->cols_list_count) $widget_info->cols_list_count = 5;
|
||||
|
||||
// 노출 여부 체크
|
||||
if($args->display_author!='Y') $widget_info->display_author = 'N';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue