diff --git a/adm/board_form_update.php b/adm/board_form_update.php index b5f7364b7..83ff74b52 100644 --- a/adm/board_form_update.php +++ b/adm/board_form_update.php @@ -39,14 +39,17 @@ $bo_include_tail = isset($_POST['bo_include_tail']) ? preg_replace(array("#[\\\] $check_captcha = false; // 관리자가 자동등록방지 CAPTCHA를 사용해야 할 경우 -if ($w === 'u') { - if (isset($board['bo_include_head'], $board['bo_include_tail']) && - ($board['bo_include_head'] !== $bo_include_head || $board['bo_include_tail'] !== $bo_include_tail)) { - $check_captcha = true; - } -} elseif ($w === '') { - if ($bo_include_head !== '_head.php' || $bo_include_tail !== '_tail.php') { - $check_captcha = true; +// 최고 관리자인 경우에만 수정가능 +if ($is_admin === 'super') { + if ($w === 'u') { + if (isset($board['bo_include_head'], $board['bo_include_tail']) && + ($board['bo_include_head'] !== $bo_include_head || $board['bo_include_tail'] !== $bo_include_tail)) { + $check_captcha = true; + } + } elseif ($w === '') { + if ($bo_include_head !== '_head.php' || $bo_include_tail !== '_tail.php') { + $check_captcha = true; + } } } diff --git a/adm/css/admin.css b/adm/css/admin.css index 6915f99b3..73a0aca71 100644 --- a/adm/css/admin.css +++ b/adm/css/admin.css @@ -587,7 +587,7 @@ td.td_grpset {width:160px;border-left:1px solid #e9ecee;text-align:center} .td_time{text-align:center;width:130px} .td_center{text-align:center;} .td_type{width:120px} -.td_consent{width:200px} +.td_consent{min-width:70px;max-width:200px} .td_mng_s{width:60px} .td_mng_m{width:100px} diff --git a/adm/member_list.php b/adm/member_list.php index bb3be84c6..afcf45e77 100644 --- a/adm/member_list.php +++ b/adm/member_list.php @@ -127,7 +127,7 @@ $colspan = 16;