관리자: #253 에 따른 처리
This commit is contained in:
@ -72,9 +72,9 @@ var list_update_php = "./boardgroup_list_update.php";
|
||||
생성된 그룹수 <?=number_format($total_count)?>개
|
||||
</span>
|
||||
<select name="sfl" title="검색대상">
|
||||
<option value="gr_subject" <?=get_selected("gr_subject", $_GET['sfl']);?>>제목</option>
|
||||
<option value="gr_id" <?=get_selected("gr_id", $_GET['sfl']);?>>ID</option>
|
||||
<option value="gr_admin" <?=get_selected("gr_admin", $_GET['sfl']);?>>그룹관리자</option>
|
||||
<option value="gr_subject"<?=get_selected($_GET['sfl'], "gr_subject", );?>>제목</option>
|
||||
<option value="gr_id"<?=get_selected($_GET['sfl'], "gr_id");?>>ID</option>
|
||||
<option value="gr_admin"<?=get_selected($_GET['sfl'], "gr_admin");?>>그룹관리자</option>
|
||||
</select>
|
||||
<input type="text" name="stx" class="required frm_input" required value="<?=$stx?>" title="검색어(필수)">
|
||||
<input type="submit" class="btn_submit" value="검색">
|
||||
@ -155,10 +155,10 @@ var list_update_php = "./boardgroup_list_update.php";
|
||||
<td><a href="./boardgroupmember_list.php?gr_id=<?=$row['gr_id']?>"><?=$row1['cnt']?></a></td>
|
||||
<td>
|
||||
<select id="gr_use_<?=$i?>" name="gr_use[<?=$i?>]">
|
||||
<option value="both" <?=get_selected($row['gr_use'], 'both', true);?>>양쪽</option>
|
||||
<option value="pc" <?=get_selected($row['gr_use'], 'pc');?>>PC</option>
|
||||
<option value="mobile" <?=get_selected($row['gr_use'], 'mobile');?>>모바일</option>
|
||||
<option value="none" <?=get_selected($row['gr_use'], 'none');?>>미사용</option>
|
||||
<option value="both"<?=get_selected($row['gr_use'], 'both', true);?>>양쪽</option>
|
||||
<option value="pc"<?=get_selected($row['gr_use'], 'pc');?>>PC</option>
|
||||
<option value="mobile"<?=get_selected($row['gr_use'], 'mobile');?>>모바일</option>
|
||||
<option value="none"<?=get_selected($row['gr_use'], 'none');?>>미사용</option>
|
||||
</select>
|
||||
</td>
|
||||
<td class="td_mng"><?=$s_upd?></td>
|
||||
|
||||
Reference in New Issue
Block a user