mobile skin 적용중
This commit is contained in:
@ -7,14 +7,11 @@ auth_check($auth[$sub_menu], 'w');
|
||||
if ($is_admin != 'super' && $w == '') alert('최고관리자만 접근 가능합니다.');
|
||||
|
||||
$html_title = '게시판그룹';
|
||||
if ($w == '')
|
||||
{
|
||||
if ($w == '') {
|
||||
$gr_id_attr = 'required';
|
||||
$gr['gr_use_access'] = 0;
|
||||
$html_title .= ' 생성';
|
||||
}
|
||||
else if ($w == 'u')
|
||||
{
|
||||
} else if ($w == 'u') {
|
||||
$gr_id_attr = 'readonly style="background-color:#dddddd"';
|
||||
$gr = sql_fetch(" select * from {$g4['group_table']} where gr_id = '$gr_id' ");
|
||||
$html_title .= ' 수정';
|
||||
@ -50,6 +47,18 @@ include_once('./admin.head.php');
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="gr_use">사용여부</label></th>
|
||||
<td>
|
||||
<?=help("게시판그룹의 사용여부 설정이 게시판의 사용여부 설정보다 우선합니다.")?>
|
||||
<select id="gr_use_" name="gr_use">
|
||||
<option value="both" <?=get_selected($group['gr_use'], 'both', true);?>>PC와 모바일에서 모두 사용</option>
|
||||
<option value="pc" <?=get_selected($group['gr_use'], 'pc');?>>PC 전용</option>
|
||||
<option value="mobile" <?=get_selected($group['gr_use'], 'mobile');?>>모바일 전용</option>
|
||||
<option value="none" <?=get_selected($group['gr_use'], 'none');?>>사용하지 않음</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="gr_admin">그룹 관리자</label></th>
|
||||
<td>
|
||||
|
||||
Reference in New Issue
Block a user