이미지 위젯 - 가로, 세로 갯수 설정이 바뀐 오류 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2652 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
k10206 2007-09-28 14:46:38 +00:00
parent a441f43674
commit faf31a9b21

View file

@ -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';