diff --git a/adm/admin.lib.php b/adm/admin.lib.php index 5cf11271f..c1d11a9fa 100644 --- a/adm/admin.lib.php +++ b/adm/admin.lib.php @@ -265,5 +265,5 @@ if (isset($page)) $arr_query[] = 'page='.$page; $qstr = implode("&", $arr_query); // 관리자에서는 추가 스크립트는 사용하지 않는다. -$config['cf_add_script'] = ''; +//$config['cf_add_script'] = ''; ?> \ No newline at end of file diff --git a/adm/member_list.php b/adm/member_list.php index 6f389e89d..94a389c2f 100644 --- a/adm/member_list.php +++ b/adm/member_list.php @@ -120,25 +120,25 @@ $colspan = 15; 회원아이디 - 이름/권한 - 최종접속 + 이름 휴대폰 주소 + 최종접속 포인트 관리 - 상태 별명 - 가입일 + 상태/권한 전화번호 - 본인
확인 - 성인
인증 메일
수신 정보
공개 메일
인증 + 본인
확인 + 성인
인증 접근
차단 - 그룹 + 가입일 + 접근그룹 @@ -183,10 +183,15 @@ $colspan = 15; } if ($intercept_title == '') $intercept_title = '차단하기'; + + $address = $row['mb_zip1'] ? $row['mb_addr1'].' '.$row['mb_addr2'] : ''; + + $tr_bg = ''; + if ($i%2 == 0) $tr_bg = 'class="tr_bg"'; ?> - - + > + @@ -194,35 +199,35 @@ $colspan = 15; - - - 전화번호 - 주소 + + + -
+
- - + > +
+ + -
- - 휴대폰번호 - 본인 - 성인 - Yes':'No'; ?> - Yes':'No'; ?> - Yes':'No'; ?> - + + Yes':'No'; ?> + Yes':'No'; ?> + Yes':'No'; ?> + Yes':'No'; ?> + Yes':'No'; ?> + value="" id="mb_intercept_date_" title=""> - + + set_cookie("device_width", screen.width, 6, g4_cookie_domain); '.PHP_EOL; } -echo $config['cf_add_script']; +if(!defined('G4_IS_ADMIN')) + echo $config['cf_add_script']; ?> diff --git a/skin/board/basic/view.skin.php b/skin/board/basic/view.skin.php index 316767c06..cd3ab66ba 100644 --- a/skin/board/basic/view.skin.php +++ b/skin/board/basic/view.skin.php @@ -279,17 +279,24 @@ function view_image_resize() $img.each(function() { var img_width = $(this).width(); + var img_height = $(this).height(); var this_width = $(this).data("width"); + var this_height = $(this).data("height"); if(this_width == undefined) { $(this).data("width", img_width); // 원래 이미지 사이즈 + $(this).data("height", img_height); this_width = img_width; + this_height = img_height; } if(this_width > res_width) { $(this).width(res_width); + var res_height = Math.round(res_width * $(this).data("height") / $(this).data("width")); + $(this).height(res_height); } else { $(this).width(this_width); + $(this).height(this_height); } }); } diff --git a/skin/board/gallery/view.skin.php b/skin/board/gallery/view.skin.php index 19ecc715b..7873cf3bd 100644 --- a/skin/board/gallery/view.skin.php +++ b/skin/board/gallery/view.skin.php @@ -277,17 +277,24 @@ function view_image_resize() $img.each(function() { var img_width = $(this).width(); + var img_height = $(this).height(); var this_width = $(this).data("width"); + var this_height = $(this).data("height"); if(this_width == undefined) { $(this).data("width", img_width); // 원래 이미지 사이즈 + $(this).data("height", img_height); this_width = img_width; + this_height = img_height; } if(this_width > res_width) { $(this).width(res_width); + var res_height = Math.round(res_width * $(this).data("height") / $(this).data("width")); + $(this).height(res_height); } else { $(this).width(this_width); + $(this).height(this_height); } }); }