From ea55f3880e45e5c9e4a5f11b31f91c4bdfc196bb Mon Sep 17 00:00:00 2001 From: thisgun Date: Wed, 6 Dec 2017 16:11:24 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B7=B8=EB=88=84=EB=B3=B4=EB=93=9C4=20?= =?UTF-8?q?=EA=B0=80=EC=A0=B8=EC=98=A4=EA=B8=B0=20=EC=BD=94=EB=93=9C?= =?UTF-8?q?=EC=97=90=20=EA=B2=8C=EC=8B=9C=ED=8C=90=20=EB=AA=A8=EB=B0=94?= =?UTF-8?q?=EC=9D=BC=20=EC=84=A4=EC=A0=95=20=EC=B6=94=EA=B0=80=20=EC=A0=81?= =?UTF-8?q?=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- g4_import_run.php | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/g4_import_run.php b/g4_import_run.php index 936b13f13..fa101017f 100644 --- a/g4_import_run.php +++ b/g4_import_run.php @@ -379,6 +379,41 @@ document.onkeydown = noRefresh ; $comma = ''; $sql_common = ''; + // 모바일 스킨 디렉토리 + if( ! isset($row['bo_mobile_skin']) ){ + $row['bo_mobile_skin'] = 'basic'; + } + + // 모바일 제목 길이 + if( ! isset($row['bo_mobile_subject_len']) ){ + $row['bo_mobile_subject_len'] = '30'; + } + + // 모바일 페이지당 목록 수 + if( ! isset($row['bo_mobile_page_rows']) ){ + $row['bo_mobile_page_rows'] = '15'; + } + + // 갤러리 이미지 폭 ( 리스트 ) + if( ! isset($row['bo_gallery_width']) ){ + $row['bo_gallery_width'] = '174'; + } + + // 갤러리 이미지 높이 ( 리스트 ) + if( ! isset($row['bo_gallery_height']) ){ + $row['bo_gallery_height'] = '124'; + } + + // 모바일 갤러리 이미지 폭 ( 리스트 ) + if( ! isset($row['bo_mobile_gallery_width']) ){ + $row['bo_mobile_gallery_width'] = '125'; + } + + // 모바일 갤러리 이미지 높이 ( 리스트 ) + if( ! isset($row['bo_mobile_gallery_height']) ){ + $row['bo_mobile_gallery_height'] = '100'; + } + foreach($row as $key=>$val) { if(!in_array($key, $columns)) continue;