Merge branch 'master' of github.com:gnuboard/g4s

This commit is contained in:
chicpro
2013-03-12 11:43:34 +09:00
22 changed files with 430 additions and 430 deletions

View File

@ -55,16 +55,16 @@ include_once('./admin.head.php');
$colspan = 5;
?>
<form id="fsearch" name="fsearch" method="get">
<input type="hidden" id="sfl" name="sfl" value="a.mb_id">
<form name="fsearch" id="fsearch" method="get">
<input type="hidden" name="sfl" value="a.mb_id" id="sfl">
<fieldset>
<legend>관리권한 검색</legend>
<span>
<?=$listall?>
설정된 관리권한 <?=number_format($total_count)?>건
</span>
<input type="text" id="stx" name="stx" class="required frm_input" required value="<?=$stx?>" title="회원아이디(필수)">
<input type="submit" id="fsearch_submit" class="btn_submit" value="검색">
<input type="text" name="stx" value="<?=$stx?>" id="stx" title="회원아이디(필수)" required class="required frm_input">
<input type="submit" value="검색" id="fsearch_submit" class="btn_submit">
</fieldset>
</form>
@ -72,7 +72,7 @@ $colspan = 5;
<h2>설정된 관리권한 내역</h2>
<p>권한 <strong>r</strong>은 읽기권한, <strong>w</strong>는 쓰기권한, <strong>d</strong>는 삭제권한입니다.</p>
<form id="fauthlist" name="fauthlist" method="post" action="./auth_list_delete.php">
<form name="fauthlist" id="fauthlist" method="post" action="./auth_list_delete.php">
<input type="hidden" name="sst" value="<?=$sst?>">
<input type="hidden" name="sod" value="<?=$sod?>">
<input type="hidden" name="sfl" value="<?=$sfl?>">
@ -82,7 +82,7 @@ $colspan = 5;
<table>
<thead>
<tr>
<th scope="col"><input type="checkbox" id="chkall" name="chkall" value="1" title="현재 페이지 권한설정 내역 전체선택" onclick="check_all(this.form)"></th>
<th scope="col"><input type="checkbox" name="chkall" value="1" id="chkall" title="현재 페이지 권한설정 내역 전체선택" onclick="check_all(this.form)"></th>
<th scope="col"><?=subject_sort_link('a.mb_id')?>회원아이디</a></th>
<th scope="col"><?=subject_sort_link('mb_nick')?>별명</a></th>
<th scope="col">메뉴</th>
@ -108,7 +108,7 @@ $colspan = 5;
<td class="td_chk">
<input type="hidden" name="au_menu[<?=$i?>]" value="<?=$row['au_menu']?>">
<input type="hidden" name="mb_id[<?=$i?>]" value="<?=$row['mb_id']?>">
<input type="checkbox" id="chk_<?=$i?>" name="chk[]" value="<?=$i?>" title="<?=$row['mb_nick']?>님의 권한체크">
<input type="checkbox" name="chk[]" value="<?=$i?>" id="chk_<?=$i?>" title="<?=$row['mb_nick']?>님의 권한체크">
</td>
<td class="td_mbid"><a href="?sfl=a.mb_id&amp;stx=<?=$row['mb_id']?>"><?=$row['mb_id']?></a></td>
<td class="td_auth_mbnick"><?=$mb_nick?></td>
@ -148,7 +148,7 @@ $colspan = 5;
</form>
</section>
<form id="fauthlist2" name="fauthlist2" method="post" action="./auth_update.php" autocomplete="off">
<form name="fauthlist2" id="fauthlist2" action="./auth_update.php" method="post" autocomplete="off">
<input type="hidden" name="sfl" value="<?=$sfl?>">
<input type="hidden" name="stx" value="<?=$stx?>">
<input type="hidden" name="sst" value="<?=$sst?>">
@ -168,7 +168,7 @@ $colspan = 5;
<tbody>
<tr>
<th scope="row"><label for="mb_id">회원아이디<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="mb_id" name="mb_id" class="required frm_input" required value="<?=$mb_id?>" title="회원아이디"></td>
<td><input type="text" name="mb_id" value="<?=$mb_id?>" id="mb_id" title="회원아이디" required class="required frm_input"></td>
</tr>
<tr>
<th scope="row"><label for="au_menu">접근가능메뉴<strong class="sound_only">필수</strong></label></th>
@ -188,11 +188,11 @@ $colspan = 5;
<tr>
<th scope="row">권한지정</th>
<td>
<input type="checkbox" id="r" name="r" value="r" checked>
<input type="checkbox" name="r" value="r" id="r" checked>
<label for="r">r (읽기)</label>
<input type="checkbox" id="w" name="w" value="w">
<input type="checkbox" name="w" value="w" id="w">
<label for="w">w (쓰기)</label>
<input type="checkbox" id="d" name="d" value="d">
<input type="checkbox" name="d" value="d" id="d">
<label for="d">d (삭제)</label>
</td>
</tr>
@ -203,11 +203,11 @@ $colspan = 5;
<legend>XSS 혹은 CSRF 방지</legend>
<p>관리자 권한을 탈취당하는 경우를 대비하여 패스워드를 다시 한번 확인합니다.</p>
<label for="admin_password">관리자 패스워드</label>
<input type="password" id="admin_password" name="admin_password" class="required frm_input" required>
<input type="password" name="admin_password" id="admin_password" required class="required frm_input">
</fieldset>
<div class="btn_confirm">
<input type="submit" class="btn_submit" value="완료">
<input type="submit" value="완료" class="btn_submit">
</div>
</section>

View File

@ -14,8 +14,8 @@ include_once(G4_PATH.'/head.sub.php');
<div class="new_win">
<h1>기존 게시판을 새 게시판으로 복사</h1>
<form id="fboardcopy" name="fboardcopy" method="post" action="./board_copy_update.php" onsubmit="return fboardcopy_check(this);">
<input type="hidden" id="bo_table" name="bo_table" value="<?=$bo_table?>">
<form name="fboardcopy" id="fboardcopy" action="./board_copy_update.php" onsubmit="return fboardcopy_check(this);" method="post">
<input type="hidden" name="bo_table" value="<?=$bo_table?>" id="bo_table">
<table class="frm_tbl">
<tbody>
<tr>
@ -24,18 +24,18 @@ include_once(G4_PATH.'/head.sub.php');
</tr>
<tr>
<th scope="col"><label for="target_table">복사 테이블명<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="target_table" name="target_table" maxlength="20" class="required alnum_ frm_input" required>영문자, 숫자, _ 만 가능 (공백없이)</td>
<td><input type="text" name="target_table" id="target_table" required class="required alnum_ frm_input" maxlength="20">영문자, 숫자, _ 만 가능 (공백없이)</td>
</tr>
<tr>
<th scope="col"><label for="target_subject">게시판 제목<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="target_subject" name="target_subject" maxlength="120" class="required frm_input" value="[복사본] <?=$board['bo_subject']?>" required></td>
<td><input type="text" name="target_subject" value="[복사본] <?=$board['bo_subject']?>" id="target_subject" required class="required frm_input" maxlength="120"></td>
</tr>
<tr>
<th scope="col">복사 유형</th>
<td>
<input type="radio" id="copy_case" name="copy_case" value="schema_only" checked>
<input type="radio" name="copy_case" value="schema_only" id="copy_case" checked>
<label for="copy_case">구조만</label>
<input type="radio" id="copy_case2" name="copy_case" value="schema_data_both">
<input type="radio" name="copy_case" value="schema_data_both" id="copy_case2">
<label for="copy_case2">구조와 데이터</label>
</td>
</tr>

View File

@ -105,7 +105,7 @@ $pg_anchor = "<ul class=\"anchor\">
</ul>";
?>
<form id="fboardform" name="fboardform" action="./board_form_update.php" method="post" onsubmit="return fboardform_submit(this)" enctype="multipart/form-data">
<form name="fboardform" id="fboardform" action="./board_form_update.php" onsubmit="return fboardform_submit(this)" method="post" enctype="multipart/form-data">
<input type="hidden" name="w" value="<?=$w?>">
<input type="hidden" name="sfl" value="<?=$sfl?>">
<input type="hidden" name="stx" value="<?=$stx?>">
@ -127,7 +127,7 @@ $pg_anchor = "<ul class=\"anchor\">
<tr>
<th scope="row"><label for="bo_table">TABLE<?=$sound_only?></label></th>
<td colspan="2">
<input type="text" id="bo_table" name="bo_table" class="frm_input" maxlength="20" <?=$bo_table_attr?> value="<?=$board['bo_table'] ?>" required>
<input type="text" name="bo_table" value="<?=$board['bo_table'] ?>" id="bo_table" required class="frm_input" maxlength="20" <?=$bo_table_attr?>>
<? if ($w == '') { ?>
영문자, 숫자, _ 만 가능 (공백없이 20자 이내)
<? } else { ?>
@ -146,7 +146,7 @@ $pg_anchor = "<ul class=\"anchor\">
<tr>
<th scope="row"><label for="bo_subject">게시판 제목<strong class="sound_only">필수</strong></label></th>
<td colspan="2">
<input type="text" id="bo_subject" name="bo_subject" maxlength="120" class="required frm_input" required value="<?=get_text($board['bo_subject'])?>" size="80">
<input type="text" name="bo_subject" value="<?=get_text($board['bo_subject'])?>" id="bo_subject" required class="required frm_input" size="80" maxlength="120">
</td>
</tr>
<tr>
@ -160,9 +160,9 @@ $pg_anchor = "<ul class=\"anchor\">
</select>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_use" name="chk_grp_use" value="1">
<input type="checkbox" name="chk_grp_use" value="1" id="chk_grp_use">
<label for="chk_grp_use">그룹적용</label>
<input type="checkbox" id="chk_all_use" name="chk_all_use" value="1">
<input type="checkbox" name="chk_all_use" value="1" id="chk_all_use">
<label for="chk_all_use">전체적용</label>
</td>
</tr>
@ -170,14 +170,14 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_category_list">분류</label></th>
<td>
<?=help('분류와 분류 사이는 | 로 구분하세요. (예: 질문|답변) 첫자로 #은 입력하지 마세요. (예: #질문|#답변 [X])')?>
<input type="text" id="bo_category_list" name="bo_category_list" class="frm_input" value="<?=get_text($board['bo_category_list'])?>" size="70">
<input type="checkbox" id="bo_use_category" name="bo_use_category" value="1" <?=$board['bo_use_category']?'checked':'';?>>
<input type="text" name="bo_category_list" value="<?=get_text($board['bo_category_list'])?>" id="bo_category_list" class="frm_input" size="70">
<input type="checkbox" name="bo_use_category" value="1" id="bo_use_category" <?=$board['bo_use_category']?'checked':'';?>>
<label for="bo_use_category">사용</label>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_category_list" name="chk_grp_category_list" value="1">
<input type="checkbox" name="chk_grp_category_list" value="1" id="chk_grp_category_list">
<label for="chk_grp_category_list">그룹적용</label>
<input type="checkbox" id="chk_all_category_list" name="chk_all_category_list" value="1">
<input type="checkbox" name="chk_all_category_list" value="1" id="chk_all_category_list">
<label for="chk_all_category_list">전체적용</label>
</td>
</tr>
@ -186,7 +186,7 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="proc_count">카운트 조정</label></th>
<td colspan="2">
<?=help('현재 원글수 : '.number_format($board['bo_count_write']).', 현재 댓글수 : '.number_format($board['bo_count_comment'])."\n".'게시판 목록에서 글의 번호가 맞지 않을 경우에 체크하십시오.')?>
<input type="checkbox" id="proc_count" name="proc_count" value="1">
<input type="checkbox" name="proc_count" value="1" id="proc_count">
</td>
</tr>
<? } ?>
@ -208,12 +208,12 @@ $pg_anchor = "<ul class=\"anchor\">
<tr>
<th scope="row"><label for="bo_admin">게시판 관리자</label></th>
<td>
<input type="text" id="bo_admin" name="bo_admin" class="frm_input" maxlength="20" value="<?=$board['bo_admin']?>">
<input type="text" name="bo_admin" value="<?=$board['bo_admin']?>" id="bo_admin" class="frm_input" maxlength="20">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_admin" name="chk_grp_admin" value="1">
<input type="checkbox" name="chk_grp_admin" value="1" id="chk_grp_admin">
<label for="chk_grp_admin">그룹적용</label>
<input type="checkbox" id="chk_all_admin" name="chk_all_admin" value="1">
<input type="checkbox" name="chk_all_admin" value="1" id="chk_all_admin">
<label for="chk_all_admin">전체적용</label>
</td>
</tr>
@ -224,9 +224,9 @@ $pg_anchor = "<ul class=\"anchor\">
<?=get_member_level_select('bo_list_level', 1, 10, $board['bo_list_level']) ?>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_list_level" name="chk_grp_list_level" value="1">
<input type="checkbox" name="chk_grp_list_level" value="1" id="chk_grp_list_level">
<label for="chk_grp_list_level">그룹적용</label>
<input type="checkbox" id="chk_all_list_level" name="chk_all_list_level" value="1">
<input type="checkbox" name="chk_all_list_level" value="1" id="chk_all_list_level">
<label for="chk_all_list_level">전체적용</label>
</td>
</tr>
@ -236,9 +236,9 @@ $pg_anchor = "<ul class=\"anchor\">
<?=get_member_level_select('bo_read_level', 1, 10, $board['bo_read_level']) ?>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_read_level" name="chk_grp_read_level" value="1">
<input type="checkbox" name="chk_grp_read_level" value="1" id="chk_grp_read_level">
<label for="chk_grp_read_level">그룹적용</label>
<input type="checkbox" id="chk_all_read_level" name="chk_all_read_level" value="1">
<input type="checkbox" name="chk_all_read_level" value="1" id="chk_all_read_level">
<label for="chk_all_read_level">전체적용</label>
</td>
</tr>
@ -248,9 +248,9 @@ $pg_anchor = "<ul class=\"anchor\">
<?=get_member_level_select('bo_write_level', 1, 10, $board['bo_write_level']) ?>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_write_level" name="chk_grp_write_level" value="1">
<input type="checkbox" name="chk_grp_write_level" value="1" id="chk_grp_write_level">
<label for="chk_grp_write_level">그룹적용</label>
<input type="checkbox" id="chk_all_write_level" name="chk_all_write_level" value="1">
<input type="checkbox" name="chk_all_write_level" value="1" id="chk_all_write_level">
<label for="chk_all_write_level">전체적용</label>
</td>
</tr>
@ -260,9 +260,9 @@ $pg_anchor = "<ul class=\"anchor\">
<?=get_member_level_select('bo_reply_level', 1, 10, $board['bo_reply_level']) ?>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_reply_level" name="chk_grp_reply_level" value="1">
<input type="checkbox" name="chk_grp_reply_level" value="1" id="chk_grp_reply_level">
<label for="chk_grp_reply_level">그룹적용</label>
<input type="checkbox" id="chk_all_reply_level" name="chk_all_reply_level" value="1">
<input type="checkbox" name="chk_all_reply_level" value="1" id="chk_all_reply_level">
<label for="chk_all_reply_level">전체적용</label>
</td>
</tr>
@ -272,9 +272,9 @@ $pg_anchor = "<ul class=\"anchor\">
<?=get_member_level_select('bo_comment_level', 1, 10, $board['bo_comment_level']) ?>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_comment_level" name="chk_grp_comment_level" value="1">
<input type="checkbox" name="chk_grp_comment_level" value="1" id="chk_grp_comment_level">
<label for="chk_grp_comment_level">그룹적용</label>
<input type="checkbox" id="chk_all_comment_level" name="chk_all_comment_level" value="1">
<input type="checkbox" name="chk_all_comment_level" value="1" id="chk_all_comment_level">
<label for="chk_all_comment_level">전체적용</label>
</td>
</tr>
@ -284,9 +284,9 @@ $pg_anchor = "<ul class=\"anchor\">
<?=get_member_level_select('bo_link_level', 1, 10, $board['bo_link_level']) ?>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_link_level" name="chk_grp_link_level" value="1">
<input type="checkbox" name="chk_grp_link_level" value="1" id="chk_grp_link_level">
<label for="chk_grp_link_level">그룹적용</label>
<input type="checkbox" id="chk_all_link_level" name="chk_all_link_level" value="1">
<input type="checkbox" name="chk_all_link_level" value="1" id="chk_all_link_level">
<label for="chk_all_link_level">전체적용</label>
</td>
</tr>
@ -296,9 +296,9 @@ $pg_anchor = "<ul class=\"anchor\">
<?=get_member_level_select('bo_upload_level', 1, 10, $board['bo_upload_level']) ?>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_upload_level" name="chk_grp_upload_level" value="1">
<input type="checkbox" name="chk_grp_upload_level" value="1" id="chk_grp_upload_level">
<label for="chk_grp_upload_level">그룹적용</label>
<input type="checkbox" id="chk_all_upload_level" name="chk_all_upload_level" value="1">
<input type="checkbox" name="chk_all_upload_level" value="1" id="chk_all_upload_level">
<label for="chk_all_upload_level">전체적용</label>
</td>
</tr>
@ -308,9 +308,9 @@ $pg_anchor = "<ul class=\"anchor\">
<?=get_member_level_select('bo_download_level', 1, 10, $board['bo_download_level']) ?>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_download_level" name="chk_grp_download_level" value="1">
<input type="checkbox" name="chk_grp_download_level" value="1" id="chk_grp_download_level">
<label for="chk_grp_download_level">그룹적용</label>
<input type="checkbox" id="chk_all_download_level" name="chk_all_download_level" value="1">
<input type="checkbox" name="chk_all_download_level" value="1" id="chk_all_download_level">
<label for="chk_all_download_level">전체적용</label>
</td>
</tr>
@ -320,9 +320,9 @@ $pg_anchor = "<ul class=\"anchor\">
<?=get_member_level_select('bo_html_level', 1, 10, $board['bo_html_level']) ?>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_html_level" name="chk_grp_html_level" value="1">
<input type="checkbox" name="chk_grp_html_level" value="1" id="chk_grp_html_level">
<label for="chk_grp_html_level">그룹적용</label>
<input type="checkbox" id="chk_all_html_level" name="chk_all_html_level" value="1">
<input type="checkbox" name="chk_all_html_level" value="1" id="chk_all_html_level">
<label for="chk_all_html_level">전체적용</label>
</td>
</tr>
@ -344,36 +344,36 @@ $pg_anchor = "<ul class=\"anchor\">
<tr>
<th scope="row"><label for="bo_count_modify">원글 수정 불가<strong class="sound_only">필수</strong></label></th>
<td>
댓글 <input type="text" id="bo_count_modify" name="bo_count_modify" class="required numeric frm_input" required value="<?=$board['bo_count_modify']?>" size="3">개 이상 달리면 수정불가
댓글 <input type="text" name="bo_count_modify" value="<?=$board['bo_count_modify']?>" id="bo_count_modify" required class="required numeric frm_input" size="3">개 이상 달리면 수정불가
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_count_modify" name="chk_grp_count_modify" value="1">
<input type="checkbox" name="chk_grp_count_modify" value="1" id="chk_grp_count_modify">
<label for="chk_grp_count_modify">그룹적용</label>
<input type="checkbox" id="chk_all_count_modify" name="chk_all_count_modify" value="1">
<input type="checkbox" name="chk_all_count_modify" value="1" id="chk_all_count_modify">
<label for="chk_all_count_modify">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_count_delete">원글 삭제 불가<strong class="sound_only">필수</strong></label></th>
<td>
댓글 <input type="text" id="bo_count_delete" name="bo_count_delete" class="required numeric frm_input" required value="<?=$board['bo_count_delete']?>" size="3">개 이상 달리면 삭제불가
댓글 <input type="text" name="bo_count_delete" value="<?=$board['bo_count_delete']?>" id="bo_count_delete" required class="required numeric frm_input" size="3">개 이상 달리면 삭제불가
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_count_delete" name="chk_grp_count_delete" value="1">
<input type="checkbox" name="chk_grp_count_delete" value="1" id="chk_grp_count_delete">
<label for="chk_grp_count_delete">그룹적용</label>
<input type="checkbox" id="chk_all_count_delete" name="chk_all_count_delete" value="1">
<input type="checkbox" name="chk_all_count_delete" value="1" id="chk_all_count_delete">
<label for="chk_all_count_delete">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_use_sideview">글쓴이 사이드뷰</label></th>
<td>
<input type="checkbox" id="bo_use_sideview" name="bo_use_sideview" value="1" <?=$board['bo_use_sideview']?'checked':'';?>>사용 (글쓴이 클릭시 나오는 레이어 메뉴)
<input type="checkbox" name="bo_use_sideview" value="1" id="bo_use_sideview" <?=$board['bo_use_sideview']?'checked':'';?>>사용 (글쓴이 클릭시 나오는 레이어 메뉴)
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_use_sideview" name="chk_grp_use_sideview" value="1">
<input type="checkbox" name="chk_grp_use_sideview" value="1" id="chk_grp_use_sideview">
<label for="chk_grp_use_sideview">그룹적용</label>
<input type="checkbox" id="chk_all_use_sideview" name="chk_all_use_sideview" value="1">
<input type="checkbox" name="chk_all_use_sideview" value="1" id="chk_all_use_sideview">
<label for="chk_all_use_sideview">전체적용</label>
</td>
</tr>
@ -388,9 +388,9 @@ $pg_anchor = "<ul class=\"anchor\">
</select>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_use_secret" name="chk_grp_use_secret" value="1">
<input type="checkbox" name="chk_grp_use_secret" value="1" id="chk_grp_use_secret">
<label for="chk_grp_use_secret">그룹적용</label>
<input type="checkbox" id="chk_all_use_secret" name="chk_all_use_secret" value="1">
<input type="checkbox" name="chk_all_use_secret" value="1" id="chk_all_use_secret">
<label for="chk_all_use_secret">전체적용</label>
</td>
</tr>
@ -398,13 +398,13 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_use_dhtml_editor">DHTML 에디터 사용</label></th>
<td>
<?=help('글작성시 내용을 DHTML 에디터 기능으로 사용할 것인지 설정합니다. 스킨에 따라 적용되지 않을 수 있습니다.')?>
<input type="checkbox" id="bo_use_dhtml_editor" name="bo_use_dhtml_editor" value="1" <?=$board['bo_use_dhtml_editor']?'checked':'';?>>
<input type="checkbox" name="bo_use_dhtml_editor" value="1" <?=$board['bo_use_dhtml_editor']?'checked':'';?> id="bo_use_dhtml_editor">
사용
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_use_dhtml_editor" name="chk_grp_use_dhtml_editor" value="1">
<input type="checkbox" name="chk_grp_use_dhtml_editor" value="1" id="chk_grp_use_dhtml_editor">
<label for="chk_grp_use_dhtml_editor">그룹적용</label>
<input type="checkbox" id="chk_all_use_dhtml_editor" name="chk_all_use_dhtml_editor" value="1">
<input type="checkbox" name="chk_all_use_dhtml_editor" value="1" id="chk_all_use_dhtml_editor">
<label for="chk_all_use_dhtml_editor">전체적용</label>
</td>
</tr>
@ -412,118 +412,118 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_use_rss_view">RSS 보이기 사용</label></th>
<td>
<?=help('비회원 글읽기가 가능하고 RSS 보이기 사용에 체크가 되어야만 RSS 지원을 합니다.')?>
<input type="checkbox" id="bo_use_rss_view" name="bo_use_rss_view" value="1" <?=$board['bo_use_rss_view']?'checked':'';?>>
<input type="checkbox" name="bo_use_rss_view" value="1" <?=$board['bo_use_rss_view']?'checked':'';?> id="bo_use_rss_view">
사용
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_use_rss_view" name="chk_grp_use_rss_view" value="1">
<input type="checkbox" name="chk_grp_use_rss_view" value="1" id="chk_grp_use_rss_view">
<label for="chk_grp_use_rss_view">그룹적용</label>
<input type="checkbox" id="chk_all_use_rss_view" name="chk_all_use_rss_view" value="1">
<input type="checkbox" name="chk_all_use_rss_view" value="1" id="chk_all_use_rss_view">
<label for="chk_all_use_rss_view">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_use_good">추천 사용</label></th>
<td>
<input type="checkbox" id="bo_use_good" name="bo_use_good" value="1" <?=$board['bo_use_good']?'checked':'';?>>
<input type="checkbox" name="bo_use_good" value="1" <?=$board['bo_use_good']?'checked':'';?> id="bo_use_good">
사용
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_use_good" name="chk_grp_use_good" value="1">
<input type="checkbox" name="chk_grp_use_good" value="1" id="chk_grp_use_good">
<label for="chk_grp_use_good">그룹적용</label>
<input type="checkbox" id="chk_all_use_good" name="chk_all_use_good" value="1">
<input type="checkbox" name="chk_all_use_good" value="1" id="chk_all_use_good">
<label for="chk_all_use_good">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_use_nogood">비추천 사용</label></th>
<td>
<input type="checkbox" id="bo_use_nogood" name="bo_use_nogood" value="1" <?=$board['bo_use_nogood']?'checked':'';?>>
<input type="checkbox" name="bo_use_nogood" value="1" id="bo_use_nogood" <?=$board['bo_use_nogood']?'checked':'';?>>
사용
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_use_nogood" name="chk_grp_use_nogood" value="1">
<input type="checkbox" name="chk_grp_use_nogood" value="1" id="chk_grp_use_nogood">
<label for="chk_grp_use_nogood">그룹적용</label>
<input type="checkbox" id="chk_all_use_nogood" name="chk_all_use_nogood" value="1">
<input type="checkbox" name="chk_all_use_nogood" value="1" id="chk_all_use_nogood">
<label for="chk_all_use_nogood">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_use_name">이름(실명) 사용</label></th>
<td>
<input type="checkbox" id="bo_use_name" name="bo_use_name" value="1" <?=$board['bo_use_name']?'checked':'';?>>
<input type="checkbox" name="bo_use_name" value="1" id="bo_use_name" <?=$board['bo_use_name']?'checked':'';?>>
사용
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_use_name" name="chk_grp_use_name" value="1">
<input type="checkbox" name="chk_grp_use_name" value="1" id="chk_grp_use_name">
<label for="chk_grp_use_name">그룹적용</label>
<input type="checkbox" id="chk_all_use_name" name="chk_all_use_name" value="1">
<input type="checkbox" name="chk_all_use_name" value="1" id="chk_all_use_name">
<label for="chk_all_use_name">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_use_signature">서명보이기 사용</label></th>
<td>
<input type="checkbox" id="bo_use_signature" name="bo_use_signature" value="1" <?=$board['bo_use_signature']?'checked':'';?>>
<input type="checkbox" name="bo_use_signature" value="1" id="bo_use_signature" <?=$board['bo_use_signature']?'checked':'';?>>
사용
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_use_signature" name="chk_grp_use_signature" value="1">
<input type="checkbox" name="chk_grp_use_signature" value="1" id="chk_grp_use_signature">
<label for="chk_grp_use_signature">그룹적용</label>
<input type="checkbox" id="chk_all_use_signature" name="chk_all_use_signature" value="1">
<input type="checkbox" name="chk_all_use_signature" value="1" id="chk_all_use_signature">
<label for="chk_all_use_signature">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_use_ip_view">IP 보이기 사용</label></th>
<td>
<input type="checkbox" id="bo_use_ip_view" name="bo_use_ip_view" value="1" <?=$board['bo_use_ip_view']?'checked':'';?>>
<input type="checkbox" name="bo_use_ip_view" value="1" id="bo_use_ip_view" <?=$board['bo_use_ip_view']?'checked':'';?>>
사용
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_use_ip_view" name="chk_grp_use_ip_view" value="1">
<input type="checkbox" name="chk_grp_use_ip_view" value="1" id="chk_grp_use_ip_view">
<label for="chk_grp_use_ip_view">그룹적용</label>
<input type="checkbox" id="chk_all_use_ip_view" name="chk_all_use_ip_view" value="1">
<input type="checkbox" name="chk_all_use_ip_view" value="1" id="chk_all_use_ip_view">
<label for="chk_all_use_ip_view">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_use_list_content">목록에서 내용 사용</label></th>
<td>
<input type="checkbox" id="bo_use_list_content" name="bo_use_list_content" value="1" <?=$board['bo_use_list_content']?'checked':'';?>>
<input type="checkbox" name="bo_use_list_content" value="1" id="bo_use_list_content" <?=$board['bo_use_list_content']?'checked':'';?>>
사용 (사용시 속도 느려질 수 있습니다.)
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_use_list_content" name="chk_grp_use_list_content" value="1">
<input type="checkbox" name="chk_grp_use_list_content" value="1" id="chk_grp_use_list_content">
<label for="chk_grp_use_list_content">그룹적용</label>
<input type="checkbox" id="chk_all_use_list_content" name="chk_all_use_list_content" value="1">
<input type="checkbox" name="chk_all_use_list_content" value="1" id="chk_all_use_list_content">
<label for="chk_all_use_list_content">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_use_list_view">전체목록보이기 사용</label></th>
<td>
<input type="checkbox" id="bo_use_list_view" name="bo_use_list_view" value="1" <?=$board['bo_use_list_view']?'checked':'';?>>
<input type="checkbox" name="bo_use_list_view" value="1" id="bo_use_list_view" <?=$board['bo_use_list_view']?'checked':'';?>>
사용
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_use_list_view" name="chk_grp_use_list_view" value="1">
<input type="checkbox" name="chk_grp_use_list_view" value="1" id="chk_grp_use_list_view">
<label for="chk_grp_use_list_view">그룹적용</label>
<input type="checkbox" id="chk_all_use_list_view" name="chk_all_use_list_view" value="1">
<input type="checkbox" name="chk_all_use_list_view" value="1" id="chk_all_use_list_view">
<label for="chk_all_use_list_view">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_use_email">메일발송 사용</label></th>
<td>
<input type="checkbox" id="bo_use_email" name="bo_use_email" value="1" <?=$board['bo_use_email']?'checked':'';?>>
<input type="checkbox" name="bo_use_email" value="1" id="bo_use_email" <?=$board['bo_use_email']?'checked':'';?>>
사용
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_use_email" name="chk_grp_use_email" value="1">
<input type="checkbox" name="chk_grp_use_email" value="1" id="chk_grp_use_email">
<label for="chk_grp_use_email">그룹적용</label>
<input type="checkbox" id="chk_all_use_email" name="chk_all_use_email" value="1">
<input type="checkbox" name="chk_all_use_email" value="1" id="chk_all_use_email">
<label for="chk_all_use_email">전체적용</label>
</td>
</tr>
@ -531,12 +531,12 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_upload_count">파일 업로드 갯수<strong class="sound_only">필수</strong></label></th>
<td>
<?=help('게시물 한건당 업로드 할 수 있는 파일의 최대 개수 (0 이면 제한 없음)')?>
<input type="text" id="bo_upload_count" name="bo_upload_count" class="required numeric frm_input" required value="<?=$board['bo_upload_count']?>" size="4">
<input type="text" name="bo_upload_count" value="<?=$board['bo_upload_count']?>" id="bo_upload_count" required class="required numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_upload_count" name="chk_grp_upload_count" value="1">
<input type="checkbox" name="chk_grp_upload_count" value="1" id="chk_grp_upload_count">
<label for="chk_grp_upload_count">그룹적용</label>
<input type="checkbox" id="chk_all_upload_count" name="chk_all_upload_count" value="1">
<input type="checkbox" name="chk_all_upload_count" value="1" id="chk_all_upload_count">
<label for="chk_all_upload_count">전체적용</label>
</td>
</tr>
@ -550,24 +550,24 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_upload_size">파일 업로드 용량<strong class="sound_only">필수</strong></label></th>
<td>
<?=help('최대 '.ini_get("upload_max_filesize").' 이하 업로드 가능, 1 MB = 1,024,768 bytes')?>
업로드 파일 한개당 <input type="text" id="bo_upload_size" name="bo_upload_size" class="required numeric frm_input" required value="<?=$board['bo_upload_size']?>" size="10"> bytes 이하
업로드 파일 한개당 <input type="text" name="bo_upload_size" value="<?=$board['bo_upload_size']?>" id="bo_upload_size" required class="required numeric frm_input" size="10"> bytes 이하
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_upload_size" name="chk_grp_upload_size" value="1">
<input type="checkbox" name="chk_grp_upload_size" value="1" id="chk_grp_upload_size">
<label for="chk_grp_upload_size">그룹적용</label>
<input type="checkbox" id="chk_all_upload_size" name="chk_all_upload_size" value="1">
<input type="checkbox" name="chk_all_upload_size" value="1" id="chk_all_upload_size">
<label for="chk_all_upload_size">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_use_file_content">파일 설명 사용</label></th>
<td>
<input type="checkbox" id="bo_use_file_content" name="bo_use_file_content" value="1" <?=$board['bo_use_file_content']?'checked':'';?>>사용
<input type="checkbox" name="bo_use_file_content" value="1" id="bo_use_file_content" <?=$board['bo_use_file_content']?'checked':'';?>>사용
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_use_file_content" name="chk_grp_use_file_content" value="1">
<input type="checkbox" name="chk_grp_use_file_content" value="1" id="chk_grp_use_file_content">
<label for="chk_grp_use_file_content">그룹적용</label>
<input type="checkbox" id="chk_all_use_file_content" name="chk_all_use_file_content" value="1">
<input type="checkbox" name="chk_all_use_file_content" value="1" id="chk_all_use_file_content">
<label for="chk_all_use_file_content">전체적용</label>
</td>
</tr>
@ -575,12 +575,12 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_write_min">최소 글수 제한</label></th>
<td>
<?=help('글 입력시 최소 글자수를 설정. 0을 입력하면 검사하지 않음')?>
<input type="text" id="bo_write_min" name="bo_write_min" class="numeric frm_input" value="<?=$board['bo_write_min']?>" size="4">
<input type="text" name="bo_write_min" value="<?=$board['bo_write_min']?>" id="bo_write_min" class="numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_write_min" name="chk_grp_write_min" value="1">
<input type="checkbox" name="chk_grp_write_min" value="1" id="chk_grp_write_min">
<label for="chk_grp_write_min">그룹적용</label>
<input type="checkbox" id="chk_all_write_min" name="chk_all_write_min" value="1">
<input type="checkbox" name="chk_all_write_min" value="1" id="chk_all_write_min">
<label for="chk_all_write_min">전체적용</label>
</td>
</tr>
@ -588,12 +588,12 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_write_max">최대 글수 제한</label></th>
<td>
<?=help('글 입력시 최대 글자수를 설정. 0을 입력하면 검사하지 않음')?>
<input type="text" id="bo_write_max" name="bo_write_max" class="numeric frm_input" value="<?=$board['bo_write_max']?>" size="4">
<input type="text" name="bo_write_max" value="<?=$board['bo_write_max']?>" id="bo_write_max" class="numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_write_max" name="chk_grp_write_max" value="1">
<input type="checkbox" name="chk_grp_write_max" value="1" id="chk_grp_write_max">
<label for="chk_grp_write_max">그룹적용</label>
<input type="checkbox" id="chk_all_write_max" name="chk_all_write_max" value="1">
<input type="checkbox" name="chk_all_write_max" value="1" id="chk_all_write_max">
<label for="chk_all_write_max">전체적용</label>
</td>
</tr>
@ -601,12 +601,12 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_comment_min">최소 댓글수 제한</label></th>
<td>
<?=help('댓글 입력시 최소 글자수, 최대 글자수를 설정. 0을 입력하면 검사하지 않음')?>
<input type="text" id="bo_comment_min" name="bo_comment_min" class="numeric frm_input" value="<?=$board['bo_comment_min']?>" size="4">
<input type="text" name="bo_comment_min" value="<?=$board['bo_comment_min']?>" id="bo_comment_min" class="numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_comment_min" name="chk_grp_comment_min" value="1">
<input type="checkbox" name="chk_grp_comment_min" value="1" id="chk_grp_comment_min">
<label for="chk_grp_comment_min">그룹적용</label>
<input type="checkbox" id="chk_all_comment_min" name="chk_all_comment_min" value="1">
<input type="checkbox" name="chk_all_comment_min" value="1" id="chk_all_comment_min">
<label for="chk_all_comment_min">전체적용</label>
</td>
</tr>
@ -614,25 +614,25 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_comment_max">최대 댓글수 제한</label></th>
<td>
<?=help('댓글 입력시 최소 글자수, 최대 글자수를 설정. 0을 입력하면 검사하지 않음')?>
<input type="text" id="bo_comment_max" name="bo_comment_max" class="numeric frm_input" value="<?=$board['bo_comment_max']?>" size="4">
<input type="text" name="bo_comment_max" value="<?=$board['bo_comment_max']?>" id="bo_comment_max" class="numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_comment_max" name="chk_grp_comment_max" value="1">
<input type="checkbox" name="chk_grp_comment_max" value="1" id="chk_grp_comment_max">
<label for="chk_grp_comment_max">그룹적용</label>
<input type="checkbox" id="chk_all_comment_max" name="chk_all_comment_max" value="1">
<input type="checkbox" name="chk_all_comment_max" value="1" id="chk_all_comment_max">
<label for="chk_all_comment_max">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_use_search">전체 검색 사용</label></th>
<td>
<input type="checkbox" id="bo_use_search" name="bo_use_search" value="1" <?=$board['bo_use_search']?'checked':'';?>>
<input type="checkbox" name="bo_use_search" value="1" id="bo_use_search" <?=$board['bo_use_search']?'checked':'';?>>
사용
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_use_search" name="chk_grp_use_search" value="1">
<input type="checkbox" name="chk_grp_use_search" value="1" id="chk_grp_use_search">
<label for="chk_grp_use_search">그룹적용</label>
<input type="checkbox" id="chk_all_use_search" name="chk_all_use_search" value="1">
<input type="checkbox" name="chk_all_use_search" value="1" id="chk_all_use_search">
<label for="chk_all_use_search">전체적용</label>
</td>
</tr>
@ -640,13 +640,13 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_show_menu">메뉴보이기</label></th>
<td>
<?=help("사용에 체크하시면 게시판 제목을 메뉴에 출력합니다.")?>
<input type="checkbox" id="bo_show_menu" name="bo_show_menu" value="1" <?=$board['bo_show_menu']?'checked':'';?>>
<input type="checkbox" name="bo_show_menu" value="1" id="bo_show_menu" <?=$board['bo_show_menu']?'checked':'';?>>
사용
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_show_menu" name="chk_grp_show_menu" value="1">
<input type="checkbox" name="chk_grp_show_menu" value="1" id="chk_grp_show_menu">
<label for="chk_grp_show_menu">그룹적용</label>
<input type="checkbox" id="chk_all_show_menu" name="chk_all_show_menu" value="1">
<input type="checkbox" name="chk_all_show_menu" value="1" id="chk_all_show_menu">
<label for="chk_all_show_menu">전체적용</label>
</td>
</tr>
@ -654,12 +654,12 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_order">출력 순서</label></th>
<td>
<?=help('숫자가 낮은 게시판 부터 메뉴나 검색시 우선 출력합니다.')?>
<input type="text" id="bo_order" name="bo_order" class="frm_input" value="<?=$board['bo_order']?>" size="4">
<input type="text" name="bo_order" value="<?=$board['bo_order']?>" id="bo_order" class="frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_order" name="chk_grp_order" value="1">
<input type="checkbox" name="chk_grp_order" value="1" id="chk_grp_order">
<label for="chk_grp_order">그룹적용</label>
<input type="checkbox" id="chk_all_order" name="chk_all_order" value="1">
<input type="checkbox" name="chk_all_order" value="1" id="chk_all_order">
<label for="chk_all_order">전체적용</label>
</td>
</tr>
@ -684,9 +684,9 @@ $pg_anchor = "<ul class=\"anchor\">
<?=get_skin_select('board', 'bo_skin', 'bo_skin', $board['bo_skin'], 'required');?>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_skin" name="chk_grp_skin" value="1">
<input type="checkbox" name="chk_grp_skin" value="1" id="chk_grp_skin">
<label for="chk_grp_skin">그룹적용</label>
<input type="checkbox" id="chk_all_skin" name="chk_all_skin" value="1">
<input type="checkbox" name="chk_all_skin" value="1" id="chk_all_skin">
<label for="chk_all_skin">전체적용</label>
</td>
</tr>
@ -697,33 +697,33 @@ $pg_anchor = "<ul class=\"anchor\">
<?=get_mobile_skin_select('board', 'bo_mobile_skin', 'bo_mobile_skin', $board['bo_mobile_skin'], 'required');?>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_mobile_skin" name="chk_grp_mobile_skin" value="1">
<input type="checkbox" name="chk_grp_mobile_skin" value="1" id="chk_grp_mobile_skin">
<label for="chk_grp_mobile_skin">그룹적용</label>
<input type="checkbox" id="chk_all_mobile_skin" name="chk_all_mobile_skin" value="1">
<input type="checkbox" name="chk_all_mobile_skin" value="1" id="chk_all_mobile_skin">
<label for="chk_all_mobile_skin">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_include_head">상단 파일 경로</label></th>
<td>
<input type="text" id="bo_include_head" name="bo_include_head" class="frm_input" value="<?=$board['bo_include_head']?>" size="50">
<input type="text" name="bo_include_head" value="<?=$board['bo_include_head']?>" id="bo_include_head" class="frm_input" size="50">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_include_head" name="chk_grp_include_head" value="1">
<input type="checkbox" name="chk_grp_include_head" value="1" id="chk_grp_include_head">
<label for="chk_grp_include_head">그룹적용</label>
<input type="checkbox" id="chk_all_include_head" name="chk_all_include_head" value="1">
<input type="checkbox" name="chk_all_include_head" value="1" id="chk_all_include_head">
<label for="chk_all_include_head">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_include_tail">하단 파일 경로</label></th>
<td>
<input type="text" id="bo_include_tail" name="bo_include_tail" class="frm_input" value="<?=$board['bo_include_tail']?>" size="50">
<input type="text" name="bo_include_tail" value="<?=$board['bo_include_tail']?>" id="bo_include_tail" class="frm_input" size="50">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_include_tail" name="chk_grp_include_tail" value="1">
<input type="checkbox" name="chk_grp_include_tail" value="1" id="chk_grp_include_tail">
<label for="chk_grp_include_tail">그룹적용</label>
<input type="checkbox" id="chk_all_include_tail" name="chk_all_include_tail" value="1">
<input type="checkbox" name="chk_all_include_tail" value="1" id="chk_all_include_tail">
<label for="chk_all_include_tail">전체적용</label>
</td>
</tr>
@ -733,9 +733,9 @@ $pg_anchor = "<ul class=\"anchor\">
<?=editor_html("bo_content_head", $board['bo_content_head']);?>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_content_head" name="chk_grp_content_head" value="1">
<input type="checkbox" name="chk_grp_content_head" value="1" id="chk_grp_content_head">
<label for="chk_grp_content_head">그룹적용</label>
<input type="checkbox" id="chk_all_content_head" name="chk_all_content_head" value="1">
<input type="checkbox" name="chk_all_content_head" value="1" id="chk_all_content_head">
<label for="chk_all_content_head">전체적용</label>
</td>
</tr>
@ -745,9 +745,9 @@ $pg_anchor = "<ul class=\"anchor\">
<?=editor_html("bo_content_tail", $board['bo_content_tail']);?>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_content_tail" name="chk_grp_content_tail" value="1">
<input type="checkbox" name="chk_grp_content_tail" value="1" id="chk_grp_content_tail">
<label for="chk_grp_content_tail">그룹적용</label>
<input type="checkbox" id="chk_all_content_tail" name="chk_all_content_tail" value="1">
<input type="checkbox" name="chk_all_content_tail" value="1" id="chk_all_content_tail">
<label for="chk_all_content_tail">전체적용</label>
</td>
</tr>
@ -757,9 +757,9 @@ $pg_anchor = "<ul class=\"anchor\">
<textarea id="bo_insert_content" name="bo_insert_content" rows="5"><?=$board['bo_insert_content'] ?></textarea>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_insert_content" name="chk_grp_insert_content" value="1">
<input type="checkbox" name="chk_grp_insert_content" value="1" id="chk_grp_insert_content">
<label for="chk_grp_insert_content">그룹적용</label>
<input type="checkbox" id="chk_all_insert_content" name="chk_all_insert_content" value="1">
<input type="checkbox" name="chk_all_insert_content" value="1" id="chk_all_insert_content">
<label for="chk_all_insert_content">전체적용</label>
</td>
</tr>
@ -767,24 +767,24 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_subject_len">제목 길이<strong class="sound_only">필수</strong></label></th>
<td>
<?=help('목록에서의 제목 글자수. 잘리는 글은 … 로 표시')?>
<input type="text" id="bo_subject_len" name="bo_subject_len" class="required numeric frm_input" required value="<?=$board['bo_subject_len']?>" size="4">
<input type="text" name="bo_subject_len" value="<?=$board['bo_subject_len']?>" id="bo_subject_len" required class="required numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_subject_len" name="chk_grp_subject_len" value="1">
<input type="checkbox" name="chk_grp_subject_len" value="1" id="chk_grp_subject_len">
<label for="chk_grp_subject_len">그룹적용</label>
<input type="checkbox" id="chk_all_subject_len" name="chk_all_subject_len" value="1">
<input type="checkbox" name="chk_all_subject_len" value="1" id="chk_all_subject_len">
<label for="chk_all_subject_len">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_page_rows">페이지당 목록 수<strong class="sound_only">필수</strong></label></th>
<td>
<input type="text" id="bo_page_rows" name="bo_page_rows" class="required numeric frm_input" required value="<?=$board['bo_page_rows']?>" size="4">
<input type="text" name="bo_page_rows" value="<?=$board['bo_page_rows']?>" id="bo_page_rows" required class="required numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_page_rows" name="chk_grp_page_rows" value="1">
<input type="checkbox" name="chk_grp_page_rows" value="1" id="chk_grp_page_rows">
<label for="chk_grp_page_rows">그룹적용</label>
<input type="checkbox" id="chk_all_page_rows" name="chk_all_page_rows" value="1">
<input type="checkbox" name="chk_all_page_rows" value="1" id="chk_all_page_rows">
<label for="chk_all_page_rows">전체적용</label>
</td>
</tr>
@ -792,12 +792,12 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_gallery_cols">갤러리 이미지 수<strong class="sound_only">필수</strong></label></th>
<td>
<?=help('갤러리 형식의 게시판 목록에서 이미지를 한줄에 몇장씩 보여 줄 것인지를 설정하는 값')?>
<input type="text" id="bo_gallery_cols" name="bo_gallery_cols" class="required numeric frm_input" required value="<?=$board['bo_gallery_cols']?>" size="4">
<input type="text" name="bo_gallery_cols" value="<?=$board['bo_gallery_cols']?>" id="bo_gallery_cols" required class="required numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_gallery_cols" name="chk_grp_gallery_cols" value="1">
<input type="checkbox" name="chk_grp_gallery_cols" value="1" id="chk_grp_gallery_cols">
<label for="chk_grp_gallery_cols">그룹적용</label>
<input type="checkbox" id="chk_all_gallery_cols" name="chk_all_gallery_cols" value="1">
<input type="checkbox" name="chk_all_gallery_cols" value="1" id="chk_all_gallery_cols">
<label for="chk_all_gallery_cols">전체적용</label>
</td>
</tr>
@ -805,12 +805,12 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_gallery_width">갤러리 이미지 폭<strong class="sound_only">필수</strong></label></th>
<td>
<?=help('갤러리 형식의 게시판 목록에서 썸네일 이미지의 폭을 설정하는 값')?>
<input type="text" id="bo_gallery_width" name="bo_gallery_width" class="required numeric frm_input" required value="<?=$board['bo_gallery_width']?>" size="4">
<input type="text" name="bo_gallery_width" value="<?=$board['bo_gallery_width']?>" id="bo_gallery_width" required class="required numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_gallery_width" name="chk_grp_gallery_width" value="1">
<input type="checkbox" name="chk_grp_gallery_width" value="1" id="chk_grp_gallery_width">
<label for="chk_grp_gallery_width">그룹적용</label>
<input type="checkbox" id="chk_all_gallery_width" name="chk_all_gallery_width" value="1">
<input type="checkbox" name="chk_all_gallery_width" value="1" id="chk_all_gallery_width">
<label for="chk_all_gallery_width">전체적용</label>
</td>
</tr>
@ -818,12 +818,12 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_gallery_height">갤러리 이미지 높이<strong class="sound_only">필수</strong></label></th>
<td>
<?=help('갤러리 형식의 게시판 목록에서 썸네일 이미지의 높이를 설정하는 값')?>
<input type="text" id="bo_gallery_height" name="bo_gallery_height" class="required numeric frm_input" required value="<?=$board['bo_gallery_height']?>" size="4">
<input type="text" name="bo_gallery_height" value="<?=$board['bo_gallery_height']?>" id="bo_gallery_height" required class="required numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_gallery_height" name="chk_grp_gallery_height" value="1">
<input type="checkbox" name="chk_grp_gallery_height" value="1" id="chk_grp_gallery_height">
<label for="chk_grp_gallery_height">그룹적용</label>
<input type="checkbox" id="chk_all_gallery_height" name="chk_all_gallery_height" value="1">
<input type="checkbox" name="chk_all_gallery_height" value="1" id="chk_all_gallery_height">
<label for="chk_all_gallery_height">전체적용</label>
</td>
</tr>
@ -831,12 +831,12 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_mobile_gallery_cols">모바일<br>갤러리 이미지 수<strong class="sound_only">필수</strong></label></th>
<td>
<?=help('모바일로 접속시 갤러리 형식의 게시판 목록에서 이미지를 한줄에 몇장씩 보여 줄 것인지를 설정하는 값')?>
<input type="text" id="bo_mobile_gallery_cols" name="bo_mobile_gallery_cols" class="required numeric frm_input" required value="<?=$board['bo_mobile_gallery_cols']?>" size="4">
<input type="text" name="bo_mobile_gallery_cols" value="<?=$board['bo_mobile_gallery_cols']?>" id="bo_mobile_gallery_cols" required class="required numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="mobile_chk_grp_gallery_cols" name="mobile_chk_grp_gallery_cols" value="1">
<input type="checkbox" name="mobile_chk_grp_gallery_cols" id="mobile_chk_grp_gallery_cols" value="1">
<label for="mobile_chk_grp_gallery_cols">그룹적용</label>
<input type="checkbox" id="mobile_chk_all_gallery_cols" name="mobile_chk_all_gallery_cols" value="1">
<input type="checkbox" name="mobile_chk_all_gallery_cols" id="mobile_chk_all_gallery_cols" value="1">
<label for="mobile_chk_all_gallery_cols">전체적용</label>
</td>
</tr>
@ -844,12 +844,12 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_mobile_gallery_width">모바일<br>갤러리 이미지 폭<strong class="sound_only">필수</strong></label></th>
<td>
<?=help('모바일로 접속시 갤러리 형식의 게시판 목록에서 썸네일 이미지의 폭을 설정하는 값')?>
<input type="text" id="bo_mobile_gallery_width" name="bo_mobile_gallery_width" class="required numeric frm_input" required value="<?=$board['bo_mobile_gallery_width']?>" size="4">
<input type="text" name="bo_mobile_gallery_width" value="<?=$board['bo_mobile_gallery_width']?>" id="bo_mobile_gallery_width" required class="required numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="mobile_chk_grp_gallery_width" name="mobile_chk_grp_gallery_width" value="1">
<input type="checkbox" name="mobile_chk_grp_gallery_width" value="1" id="mobile_chk_grp_gallery_width">
<label for="mobile_chk_grp_gallery_width">그룹적용</label>
<input type="checkbox" id="mobile_chk_all_gallery_width" name="mobile_chk_all_gallery_width" value="1">
<input type="checkbox" name="mobile_chk_all_gallery_width" value="1" id="mobile_chk_all_gallery_width">
<label for="mobile_chk_all_gallery_width">전체적용</label>
</td>
</tr>
@ -857,12 +857,12 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_mobile_gallery_height">모바일<br>갤러리 이미지 높이<strong class="sound_only">필수</strong></label></th>
<td>
<?=help('모바일로 접속시 갤러리 형식의 게시판 목록에서 썸네일 이미지의 높이를 설정하는 값')?>
<input type="text" id="bo_mobile_gallery_height" name="bo_mobile_gallery_height" class="required numeric frm_input" required value="<?=$board['bo_mobile_gallery_height']?>" size="4">
<input type="text" name="bo_mobile_gallery_height" value="<?=$board['bo_mobile_gallery_height']?>" id="bo_mobile_gallery_height" required class="required numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="mobile_chk_grp_gallery_height" name="mobile_chk_grp_gallery_height" value="1">
<input type="checkbox" name="mobile_chk_grp_gallery_height" value="1" id="mobile_chk_grp_gallery_height">
<label for="mobile_chk_grp_gallery_height">그룹적용</label>
<input type="checkbox" id="mobile_chk_all_gallery_height" name="mobile_chk_all_gallery_height" value="1">
<input type="checkbox" name="mobile_chk_all_gallery_height" value="1" id="mobile_chk_all_gallery_height">
<label for="mobile_chk_all_gallery_height">전체적용</label>
</td>
</tr>
@ -870,12 +870,12 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_table_width">게시판 폭<strong class="sound_only">필수</strong></label></th>
<td>
<?=help('100 이하는 %')?>
<input type="text" id="bo_table_width" name="bo_table_width" class="required numeric frm_input" required value="<?=$board['bo_table_width']?>" size="4">
<input type="text" name="bo_table_width" value="<?=$board['bo_table_width']?>" id="bo_table_width" required class="required numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_table_width" name="chk_grp_table_width" value="1">
<input type="checkbox" name="chk_grp_table_width" value="1" id="chk_grp_table_width">
<label for="chk_grp_table_width">그룹적용</label>
<input type="checkbox" id="chk_all_table_width" name="chk_all_table_width" value="1">
<input type="checkbox" name="chk_all_table_width" value="1" id="chk_all_table_width">
<label for="chk_all_table_width">전체적용</label>
</td>
</tr>
@ -883,12 +883,12 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_image_width">이미지 폭 크기<strong class="sound_only">필수</strong></label></th>
<td>
<?=help('게시판에서 출력되는 이미지의 폭 크기')?>
<input type="text" id="bo_image_width" name="bo_image_width" class="required numeric frm_input" required value="<?=$board['bo_image_width']?>" size="4"> 픽셀
<input type="text" name="bo_image_width" value="<?=$board['bo_image_width']?>" id="bo_image_width" required class="required numeric frm_input" size="4"> 픽셀
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_image_width" name="chk_grp_image_width" value="1">
<input type="checkbox" name="chk_grp_image_width" value="1" id="chk_grp_image_width">
<label for="chk_grp_image_width">그룹적용</label>
<input type="checkbox" id="chk_all_image_width" name="chk_all_image_width" value="1">
<input type="checkbox" name="chk_all_image_width" value="1" id="chk_all_image_width">
<label for="chk_all_image_width">전체적용</label>
</td>
</tr>
@ -896,12 +896,12 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_new">새글 아이콘<strong class="sound_only">필수</strong></label></th>
<td>
<?=help('글 입력후 new 이미지를 출력하는 시간')?>
<input type="text" id="bo_new" name="bo_new" class="required numeric frm_input" required value="<?=$board['bo_new']?>" size="4">
<input type="text" name="bo_new" value="<?=$board['bo_new']?>" id="bo_new" required class="required numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_new" name="chk_grp_new" value="1">
<input type="checkbox" name="chk_grp_new" value="1" id="chk_grp_new">
<label for="chk_grp_new">그룹적용</label>
<input type="checkbox" id="chk_all_new" name="chk_all_new" value="1">
<input type="checkbox" name="chk_all_new" value="1" id="chk_all_new">
<label for="chk_all_new">전체적용</label>
</td>
</tr>
@ -909,12 +909,12 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="bo_hot">인기글 아이콘<strong class="sound_only">필수</strong></label></th>
<td>
<?=help('조회수가 설정값 이상이면 hot 이미지 출력')?>
<input type="text" id="bo_hot" name="bo_hot" class="required numeric frm_input" required value="<?=$board['bo_hot']?>" size="4">
<input type="text" name="bo_hot" value="<?=$board['bo_hot']?>" id="bo_hot" required class="required numeric frm_input" size="4">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_hot" name="chk_grp_hot" value="1">
<input type="checkbox" name="chk_grp_hot" value="1" id="chk_grp_hot">
<label for="chk_grp_hot">그룹적용</label>
<input type="checkbox" id="chk_all_hot" name="chk_all_hot" value="1">
<input type="checkbox" name="chk_all_hot" value="1" id="chk_all_hot">
<label for="chk_all_hot">전체적용</label>
</td>
</tr>
@ -960,9 +960,9 @@ $pg_anchor = "<ul class=\"anchor\">
</select>
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_sort_field" name="chk_grp_sort_field" value="1">
<input type="checkbox" name="chk_grp_sort_field" value="1" id="chk_grp_sort_field">
<label for="chk_grp_sort_field">그룹적용</label>
<input type="checkbox" id="chk_all_sort_field" name="chk_all_sort_field" value="1">
<input type="checkbox" name="chk_all_sort_field" value="1" id="chk_all_sort_field">
<label for="chk_all_sort_field">전체적용</label>
</td>
</tbody>
@ -984,54 +984,54 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row"><label for="chk_grp_point">기본값으로 설정</label></th>
<td colspan="2">
<?=help('환경설정에 입력된 포인트로 설정')?>
<input type="checkbox" id="chk_grp_point" name="chk_grp_point" onclick="set_point(this.form)">
<input type="checkbox" name="chk_grp_point" id="chk_grp_point" onclick="set_point(this.form)">
</td>
</tr>
<tr>
<th scope="row"><label for="bo_read_point">글읽기 포인트<strong class="sound_only">필수</strong></label></th>
<td>
<input type="text" id="bo_read_point" name="bo_read_point" class="required frm_input" required value="<?=$board['bo_read_point']?>" size="5">
<input type="text" name="bo_read_point" value="<?=$board['bo_read_point']?>" id="bo_read_point" required class="required frm_input" size="5">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_read_point" name="chk_grp_read_point" value="1">
<input type="checkbox" name="chk_grp_read_point" value="1" id="chk_grp_read_point">
<label for="chk_grp_read_point">그룹적용</label>
<input type="checkbox" id="chk_all_read_point" name="chk_all_read_point" value="1">
<input type="checkbox" name="chk_all_read_point" value="1" id="chk_all_read_point">
<label for="chk_all_read_point">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_write_point">글쓰기 포인트<strong class="sound_only">필수</strong></label></th>
<td>
<input type="text" id="bo_write_point" name="bo_write_point" class="required frm_input" required value="<?=$board['bo_write_point']?>" size="5">
<input type="text" name="bo_write_point" value="<?=$board['bo_write_point']?>" id="bo_write_point" required class="required frm_input" size="5">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_write_point" name="chk_grp_write_point" value="1">
<input type="checkbox" name="chk_grp_write_point" value="1" id="chk_grp_write_point">
<label for="chk_grp_write_point">그룹적용</label>
<input type="checkbox" id="chk_all_write_point" name="chk_all_write_point" value="1">
<input type="checkbox" name="chk_all_write_point" value="1" id="chk_all_write_point">
<label for="chk_all_write_point">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_comment_point">댓글쓰기 포인트<strong class="sound_only">필수</strong></label></th>
<td>
<input type="text" id="bo_comment_point" name="bo_comment_point" class="required frm_input" required value="<?=$board['bo_comment_point']?>" size="5">
<input type="text" name="bo_comment_point" value="<?=$board['bo_comment_point']?>" id="bo_comment_point" required class="required frm_input" size="5">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_comment_point" name="chk_grp_comment_point" value="1">
<input type="checkbox" name="chk_grp_comment_point" value="1" id="chk_grp_comment_point">
<label for="chk_grp_comment_point">그룹적용</label>
<input type="checkbox" id="chk_all_comment_point" name="chk_all_comment_point" value="1">
<input type="checkbox" name="chk_all_comment_point" value="1" id="chk_all_comment_point">
<label for="chk_all_comment_point">전체적용</label>
</td>
</tr>
<tr>
<th scope="row"><label for="bo_download_point">다운로드 포인트<strong class="sound_only">필수</strong></label></th>
<td>
<input type="text" id="bo_download_point" name="bo_download_point" class="required frm_input" required value="<?=$board['bo_download_point']?>" size="5">
<input type="text" name="bo_download_point" value="<?=$board['bo_download_point']?>" id="bo_download_point" required class="required frm_input" size="5">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_download_point" name="chk_grp_download_point" value="1">
<input type="checkbox" name="chk_grp_download_point" value="1" id="chk_grp_download_point">
<label for="chk_grp_download_point">그룹적용</label>
<input type="checkbox" id="chk_all_download_point" name="chk_all_download_point" value="1">
<input type="checkbox" name="chk_all_download_point" value="1" id="chk_all_download_point">
<label for="chk_all_download_point">전체적용</label>
</td>
</tr>
@ -1055,14 +1055,14 @@ $pg_anchor = "<ul class=\"anchor\">
<th scope="row">여분필드<?=$i?></th>
<td>
<label for="bo_<?=$i?>_subj">여분필드 <?=$i?> 제목</label>
<input type="text" id="bo_<?=$i?>_subj" name="bo_<?=$i?>_subj" class="frm_input" value="<?=get_text($board['bo_'.$i.'_subj'])?>">
<input type="text" name="bo_<?=$i?>_subj" id="bo_<?=$i?>_subj" value="<?=get_text($board['bo_'.$i.'_subj'])?>" class="frm_input">
<label for="bo_<?=$i?>">여분필드 <?=$i?> 값</label>
<input type="text" id="bo_<?=$i?>" name="bo_<?=$i?>" class="frm_input" value="<?=get_text($board['bo_'.$i])?>">
<input type="text" name="bo_<?=$i?>" value="<?=get_text($board['bo_'.$i])?>" id="bo_<?=$i?>" class="frm_input">
</td>
<td class="group_setting">
<input type="checkbox" id="chk_grp_<?=$i?>" name="chk_grp_<?=$i?>" value="1">
<input type="checkbox" name="chk_grp_<?=$i?>" value="1" id="chk_grp_<?=$i?>">
<label for="chk_grp_<?=$i?>">그룹적용</label>
<input type="checkbox" id="chk_all_<?=$i?>" name="chk_all_<?=$i?>" value="1">
<input type="checkbox" name="chk_all_<?=$i?>" value="1" id="chk_all_<?=$i?>">
<label for="chk_all_<?=$i?>">전체적용</label>
</td>
</tr>
@ -1075,11 +1075,11 @@ $pg_anchor = "<ul class=\"anchor\">
<legend>XSS 혹은 CSRF 방지</legend>
<p>관리자 권한을 탈취당하는 경우를 대비하여 패스워드를 다시 한번 확인합니다.</p>
<label for="admin_password">관리자 패스워드<strong class="sound_only">필수</strong></label>
<input type="password" id="admin_password" name="admin_password" class="required frm_input" required>
<input type="password" name="admin_password" id="admin_password" required class="required frm_input">
</fieldset>
<div class="btn_confirm">
<input type="submit" class="btn_submit" accesskey="s" value="확인">
<input type="submit" value="확인" class="btn_submit" accesskey="s">
<a href="./board_list.php?<?=$qstr?>">목록</a>
<? if ($w == 'u') { ?><a href="./board_copy.php?bo_table=<?=$bo_table?>" id="board_copy" target="win_board_copy">게시판복사</a><?}?>
</div>

View File

@ -56,7 +56,7 @@ include_once('./admin.head.php');
$colspan = 15;
?>
<form id="fsearch" name="fsearch" method="get">
<form name="fsearch" id="fsearch" method="get">
<fieldset>
<legend>게시판 검색</legend>
<span>
@ -68,8 +68,8 @@ $colspan = 15;
<option value="bo_subject"<?=get_selected($_GET['sfl'], "bo_subject");?>>제목</option>
<option value="a.gr_id"<?=get_selected($_GET['sfl'], "a.gr_id");?>>그룹ID</option>
</select>
<input type="text" name="stx" class="required frm_input" required value="<?=$stx?>" title="검색어(필수)">
<input type="submit" class="btn_submit" value="검색">
<input type="text" name="stx" value="<?=$stx?>" title="검색어(필수)" required class="required frm_input">
<input type="submit" value="검색" class="btn_submit">
</fieldset>
</form>
@ -83,7 +83,7 @@ $colspan = 15;
</div>
<?}?>
<form id="fboardlist" name="fboardlist" method="post" action="./board_list_update.php" onsubmit="return fboardlist_submit(this);">
<form name="fboardlist" id="fboardlist" action="./board_list_update.php" onsubmit="return fboardlist_submit(this);" method="post">
<input type="hidden" name="sst" value="<?=$sst?>">
<input type="hidden" name="sod" value="<?=$sod?>">
<input type="hidden" name="sfl" value="<?=$sfl?>">
@ -93,7 +93,7 @@ $colspan = 15;
<table class="tbl_bo_list">
<thead>
<tr>
<th scope="col"><input type="checkbox" id="chkall" name="chkall" value="1" title="현재 페이지 게시판 전체선택" onclick="check_all(this.form)"></th>
<th scope="col"><input type="checkbox" name="chkall" value="1" id="chkall" title="현재 페이지 게시판 전체선택" onclick="check_all(this.form)"></th>
<th scope="col"><?=subject_sort_link('a.gr_id')?>그룹</a></th>
<th scope="col"><?=subject_sort_link('bo_table')?>TABLE</a></th>
<th scope="col"><?=subject_sort_link('bo_skin', '', 'desc')?>스킨</a></th>
@ -119,7 +119,7 @@ $colspan = 15;
<tr>
<td>
<input type="checkbox" id="chk_<?=$i?>" name="chk[]" value="<?=$i?>" title="<?=get_text($row['bo_subject'])?> 게시판선택">
<input type="checkbox" name="chk[]" value="<?=$i?>" id="chk_<?=$i?>" title="<?=get_text($row['bo_subject'])?> 게시판선택">
</td>
<td>
<?if ($is_admin == 'super'){?>
@ -138,17 +138,17 @@ $colspan = 15;
<td>
<?=get_mobile_skin_select('board', 'bo_mobile_skin_'.$i, "bo_mobile_skin[$i]", $row['bo_mobile_skin']);?>
</td>
<td><input type="text" id="bo_subject[<?=$i?>]" name="bo_subject[<?=$i?>]" class="required frm_input" value="<?=get_text($row['bo_subject'])?>" title="게시판제목" size="10" required="required"></td>
<td><input type="text" name="bo_read_point[<?=$i?>]" class="frm_input" value="<?=$row['bo_read_point']?>" size="2" title="읽기포인트"></td>
<td><input type="text" name="bo_write_point[<?=$i?>]" class="frm_input" value="<?=$row['bo_write_point']?>" size="2" title="쓰기포인트"></td>
<td><input type="text" name="bo_comment_point[<?=$i?>]" class="frm_input" value="<?=$row['bo_comment_point']?>" size="2" title="댓글포인트"></td>
<td><input type="text" name="bo_download_point[<?=$i?>]" class="frm_input" value="<?=$row['bo_download_point']?>" size="2" title="다운포인트"></td>
<td><input type="checkbox" id="bo_use_search_<?=$i?>" name="bo_use_search[<?=$i?>]" <?=$row['bo_use_search']?"checked":""?> value="1" title="선택시 검색사용"></td>
<td><input type="checkbox" id="bo_use_search_<?=$i?>" name="bo_show_menu[<?=$i?>]" <?=$row['bo_show_menu']?"checked":""?> value="1" title="선택시 메뉴보이기"></td>
<td><input type="text" id="bo_order<?=$i?>" name="bo_order[<?=$i?>]" class="frm_input" value="<?=$row['bo_order']?>" size="2" title="출력순서"></td>
<td><input type="text" name="bo_subject[<?=$i?>]" value="<?=get_text($row['bo_subject'])?>" id="bo_subject[<?=$i?>]" title="게시판제목" class="required frm_input" size="10" required="required"></td>
<td><input type="text" name="bo_read_point[<?=$i?>]" value="<?=$row['bo_read_point']?>" title="읽기포인트" class="frm_input" size="2"></td>
<td><input type="text" name="bo_write_point[<?=$i?>]" value="<?=$row['bo_write_point']?>" title="쓰기포인트" class="frm_input" size="2"></td>
<td><input type="text" name="bo_comment_point[<?=$i?>]" value="<?=$row['bo_comment_point']?>" title="댓글포인트" class="frm_input" size="2"></td>
<td><input type="text" name="bo_download_point[<?=$i?>]" value="<?=$row['bo_download_point']?>" title="다운포인트" class="frm_input" size="2"></td>
<td><input type="checkbox" name="bo_use_search[<?=$i?>]" value="1" id="bo_use_search_<?=$i?>" <?=$row['bo_use_search']?"checked":""?> title="선택시 검색사용"></td>
<td><input type="checkbox" name="bo_show_menu[<?=$i?>]" value="1" id="bo_use_search_<?=$i?>" <?=$row['bo_show_menu']?"checked":""?> title="선택시 메뉴보이기"></td>
<td><input type="text" name="bo_order[<?=$i?>]" value="<?=$row['bo_order']?>" id="bo_order<?=$i?>" title="출력순서" class="frm_input" size="2"></td>
</td>
<td>
<select id="bo_device_<?=$i?>" name="bo_device[<?=$i?>]">
<select name="bo_device[<?=$i?>]" id="bo_device_<?=$i?>" title="접속기기 선택">
<option value="both"<?=get_selected($row['bo_device'], 'both', true);?>>모두</option>
<option value="pc"<?=get_selected($row['bo_device'], 'pc');?>>PC</option>
<option value="mobile"<?=get_selected($row['bo_device'], 'mobile');?>>모바일</option>
@ -165,9 +165,9 @@ $colspan = 15;
</table>
<div class="btn_list">
<input type="submit" name="act_button" onclick="document.pressed=this.value" value="선택수정">
<input type="submit" name="act_button" value="선택수정"onclick="document.pressed=this.value">
<?if ($is_admin == 'super') {?>
<input type="submit" name="act_button" onclick="document.pressed=this.value" value="선택삭제">
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value">
<a href="./board_form.php">게시판추가</a>
<?}?>
</div>

View File

@ -37,7 +37,7 @@ include_once('./admin.head.php');
게시판을 생성하시려면 1개 이상의 게시판그룹이 필요합니다.<br>
게시판그룹을 이용하시면 더 효과적으로 게시판을 관리할 수 있습니다.
</p>
<form id="fboardgroup" name="fboardgroup" method="post" action="./boardgroup_form_update.php" onsubmit="return fboardgroup_check(this);" autocomplete="off">
<form name="fboardgroup" id="fboardgroup" action="./boardgroup_form_update.php" onsubmit="return fboardgroup_check(this);" method="post" autocomplete="off">
<input type="hidden" name="w" value="<?=$w?>">
<input type="hidden" name="sfl" value="<?=$sfl?>">
<input type="hidden" name="stx" value="<?=$stx?>">
@ -53,7 +53,7 @@ include_once('./admin.head.php');
<tbody>
<tr>
<th scope="row"><label for="gr_id">그룹 ID<?=$sound_only?></label></th>
<td><input type="text" id="gr_id" name="gr_id" maxlength="10" class="<?=$gr_id_attr?> alnum_ frm_input" value="<?=$group['gr_id']?>">
<td><input type="text" name="gr_id" value="<?=$group['gr_id']?>" id="gr_id" class="<?=$gr_id_attr?> alnum_ frm_input" maxlength="10">
<?
if ($w=='')
echo '영문자, 숫자, _ 만 가능 (공백없이)';
@ -65,7 +65,7 @@ include_once('./admin.head.php');
<tr>
<th scope="row"><label for="gr_subject">그룹 제목<strong class="sound_only">필수</strong></label></th>
<td>
<input type="text" id="gr_subject" name="gr_subject" class="required frm_input" required value="<?=get_text($group['gr_subject'])?>" size="80">
<input type="text" name="gr_subject" value="<?=get_text($group['gr_subject'])?>" id="gr_subject" required class="required frm_input" size="80">
<?
if ($w == 'u')
echo '<a href="./board_form.php?gr_id='.$gr_id.'">게시판생성</a>';
@ -98,7 +98,7 @@ include_once('./admin.head.php');
<th scope="row"><label for="gr_use_access">접근회원사용</label></th>
<td>
<?=help("사용에 체크하시면 이 그룹에 속한 게시판은 접근가능한 회원만 접근이 가능합니다.")?>
<input type="checkbox" id="gr_use_access" name="gr_use_access" value="1" <?=$gr['gr_use_access']?'checked':'';?>>
<input type="checkbox" name="gr_use_access" value="1" id="gr_use_access" <?=$gr['gr_use_access']?'checked':'';?>>
사용
</td>
</tr>
@ -117,7 +117,7 @@ include_once('./admin.head.php');
<th scope="row"><label for="gr_show_menu">메뉴보이기</label></th>
<td>
<?=help("사용에 체크하시면 게시판그룹 제목을 메뉴에 출력합니다.")?>
<input type="checkbox" id="gr_show_menu" name="gr_show_menu" value="1" <?=$gr['gr_show_menu']?'checked':'';?>>
<input type="checkbox" name="gr_show_menu" value="1" id="gr_show_menu" <?=$gr['gr_show_menu']?'checked':'';?>>
사용
</td>
</tr>
@ -126,9 +126,9 @@ include_once('./admin.head.php');
<th scope="row">회원여분필드<?=$i?></th>
<td class="td_gr_extra">
<label for="gr_<?=$i?>_subj">여분필드 <?=$i?> 제목</label>
<input type="text" id="gr_<?=$i?>_subj" name="gr_<?=$i?>_subj" class="frm_input" value="<?=get_text($group['gr_'.$i.'_subj'])?>">
<input type="text" name="gr_<?=$i?>_subj" value="<?=get_text($group['gr_'.$i.'_subj'])?>" id="gr_<?=$i?>_subj" class="frm_input">
<label for="gr_<?=$i?>">여분필드 <?=$i?> 내용</label>
<input type="text" id="gr_<?=$i?>" name="gr_<?=$i?>" class="frm_input" value="<?=$gr['gr_'.$i]?>">
<input type="text" name="gr_<?=$i?>" value="<?=$gr['gr_'.$i]?>" id="gr_<?=$i?>" class="frm_input">
</td>
</tr>
<? } ?>

View File

@ -72,8 +72,8 @@ $colspan = 8;
<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="검색">
<input type="text" name="stx" value="<?=$stx?>" title="검색어(필수)" required class="required frm_input">
<input type="submit" value="검색" value="검색" class="btn_submit">
</fieldset>
</form>
@ -90,7 +90,7 @@ $colspan = 8;
</div>
<?}?>
<form id="fboardgrouplist" name="fboardgrouplist" method="post" action="./boardgroup_list_update.php" onsubmit="return fboardgrouplist_submit(this);">
<form name="fboardgrouplist" id="fboardgrouplist" action="./boardgroup_list_update.php" onsubmit="return fboardgrouplist_submit(this);" method="post">
<input type="hidden" name="sst" value="<?=$sst?>">
<input type="hidden" name="sod" value="<?=$sod?>">
<input type="hidden" name="sfl" value="<?=$sfl?>">
@ -101,7 +101,7 @@ $colspan = 8;
<table class="tbl_gr_list">
<thead>
<tr>
<th scope="col"><input type="checkbox" id="chkall" name="chkall" value="1" title="현재 페이지 그룹 전체선택" onclick="check_all(this.form)"></th>
<th scope="col"><input type="checkbox" name="chkall" value="1" id="chkall" title="현재 페이지 그룹 전체선택" onclick="check_all(this.form)"></th>
<th scope="col"><?=subject_sort_link('gr_id')?>그룹아이디</a></th>
<th scope="col"><?=subject_sort_link('gr_subject')?>제목</a></th>
<?if ($is_admin == 'super'){?><th scope="col"><?=subject_sort_link('gr_admin')?>그룹관리자</a></th><?}?>
@ -131,29 +131,29 @@ $colspan = 8;
<tr>
<td class="td_chk">
<input type="checkbox" id="chk_<?=$i?>" name="chk[]" value="<?=$i?>" title="<?=$row['gr_subject']?> 그룹선택">
<input type="checkbox" name="chk[]" value="<?=$i?>" id="chk_<?=$i?>" title="<?=$row['gr_subject']?> 그룹선택">
<input type="hidden" name="group_id[<?=$i?>]" value="<?=$row['gr_id']?>">
</td>
<td class="td_grid"><a href="<?=G4_BBS_URL?>/group.php?gr_id=<?=$row['gr_id']?>"><?=$row['gr_id']?></a></td>
<td>
<input type="text" id="gr_subject_<?=$i?>" name="gr_subject[<?=$i?>]" class="frm_input" value="<?=get_text($row['gr_subject'])?>" title="그룹제목 수정">
<input type="text" name="gr_subject[<?=$i?>]" value="<?=get_text($row['gr_subject'])?>" id="gr_subject_<?=$i?>" title="그룹제목 수정" class="frm_input">
</td>
<td>
<?if ($is_admin == 'super'){?>
<input type="text" id="gr_admin" name="gr_admin[<?=$i?>]" size="10" class="frm_input" value="<?=$row['gr_admin']?>" title="그룹관리자 수정" maxlength="20">
<input type="text" name="gr_admin[<?=$i?>]" value="<?=$row['gr_admin']?>" id="gr_admin" title="그룹관리자 수정" class="frm_input" size="10" maxlength="20">
<?}else{?>
<input type="hidden" name="gr_admin[<?=$i?>]" value="<?=$row['gr_admin']?>"><td><?=$row['gr_admin']?>
<?}?>
</td>
<td><a href="./board_list.php?sfl=a.gr_id&amp;stx=<?=$row['gr_id']?>"><?=$row2['cnt']?></a></td>
<td><input type="checkbox" id="gr_use_access" name="gr_use_access[<?=$i?>]" <?=$row['gr_use_access']?'checked':''?> value="1" title="선택 시 접근회원 사용"></td>
<td><input type="checkbox" name="gr_use_access[<?=$i?>]" <?=$row['gr_use_access']?'checked':''?> value="1" id="gr_use_access" title="선택 시 접근회원 사용"></td>
<td><a href="./boardgroupmember_list.php?gr_id=<?=$row['gr_id']?>"><?=$row1['cnt']?></a></td>
<td><input type="checkbox" id="gr_show_menu" name="gr_show_menu[<?=$i?>]" <?=$row['gr_show_menu']?'checked':''?> value="1" title="선택 시 메뉴보이기"></td>
<td><input type="checkbox" name="gr_show_menu[<?=$i?>]" <?=$row['gr_show_menu']?'checked':''?> value="1" id="gr_show_menu" title="선택 시 메뉴보이기"></td>
<td>
<input type="text" id="gr_order_<?=$i?>" name="gr_order[<?=$i?>]" size="2" class="frm_input" value="<?=$row['gr_order']?>" title="출력순서 수정">
<input type="text" name="gr_order[<?=$i?>]" value="<?=$row['gr_order']?>" id="gr_order_<?=$i?>" title="출력순서 수정" class="frm_input" size="2">
</td>
<td>
<select id="gr_device_<?=$i?>" name="gr_device[<?=$i?>]">
<select id="gr_device_<?=$i?>" name="gr_device[<?=$i?>]" title="접속기기 선택">
<option value="both"<?=get_selected($row['gr_device'], 'both');?>>모두</option>
<option value="pc"<?=get_selected($row['gr_device'], 'pc');?>>PC</option>
<option value="mobile"<?=get_selected($row['gr_device'], 'mobile');?>>모바일</option>

View File

@ -18,19 +18,19 @@ $colspan = 4;
<div class="cbox">
<p>아이디 <?=$mb['mb_id']?>, 이름 <?=$mb['mb_name']?>, 별명 <?=$mb['mb_nick']?>님이 접근가능한 그룹 목록</p>
<form id="fboardgroupmember" name="fboardgroupmember" method="post" action="./boardgroupmember_update.php" onsubmit="return fboardgroupmember_submit(this);">
<input type="hidden" id="sst" name="sst" value="<?=$sst?>">
<input type="hidden" id="sod" name="sod" value="<?=$sod?>">
<input type="hidden" id="sfl" name="sfl" value="<?=$sfl?>">
<input type="hidden" id="stx" name="stx" value="<?=$stx?>">
<input type="hidden" id="page" name="page" value="<?=$page?>">
<input type="hidden" id="token" name="token" value="<?=$token?>">
<input type="hidden" id="mb_id" name="mb_id" value="<?=$mb['mb_id']?>">
<input type="hidden" id="w" name="w" value="d">
<form name="fboardgroupmember" id="fboardgroupmember" action="./boardgroupmember_update.php" onsubmit="return fboardgroupmember_submit(this);" method="post">
<input type="hidden" name="sst" value="<?=$sst?>" id="sst">
<input type="hidden" name="sod" value="<?=$sod?>" id="sod">
<input type="hidden" name="sfl" value="<?=$sfl?>" id="sfl">
<input type="hidden" name="stx" value="<?=$stx?>" id="stx">
<input type="hidden" name="page" value="<?=$page?>" id="page">
<input type="hidden" name="token" value="<?=$token?>" id="token">
<input type="hidden" name="mb_id" value="<?=$mb['mb_id']?>" id="mb_id">
<input type="hidden" name="w" value="d" id="w">
<table>
<thead>
<tr>
<th scope="col"><input type="checkbox" id="chkall" name="chkall" value="1" title="현재 페이지 접근가능그룹 전체선택" onclick="check_all(this.form)"></th>
<th scope="col"><input type="checkbox" name="chkall" value="1" id="chkall" title="현재 페이지 접근가능그룹 전체선택" onclick="check_all(this.form)"></th>
<th scope="col">그룹아이디</th>
<th scope="col">그룹</th>
<th scope="col">처리일시</th>
@ -50,7 +50,7 @@ $colspan = 4;
$s_del = '<a href="javascript:post_delete(\'boardgroupmember_update.php\', \''.$row['gm_id'].'\');">삭제</a>';
?>
<tr>
<td class="td_chk"><input type="checkbox" id="chk_<?=$i?>" name="chk[]" value="<?=$row['gm_id']?>" title="<?=$row['gr_subject']?> 그룹 선택"></td>
<td class="td_chk"><input type="checkbox" name="chk[]" value="<?=$row['gm_id']?>" id="chk_<?=$i?>" title="<?=$row['gr_subject']?> 그룹 선택"></td>
<td class="td_grid"><a href="<?=$g4['bbs_path']?>/group.php?gr_id=<?=$row['gr_id']?>"><?=$row['gr_id']?></a></td>
<td class="td_category"><?=$row['gr_subject']?></td>
<td class="td_time"><?=$row['gm_datetime']?></td>
@ -72,13 +72,13 @@ $colspan = 4;
</form>
</div>
<form id="fboardgroupmember_form" name="fboardgroupmember_form" method="post" action="./boardgroupmember_update.php" onsubmit="return boardgroupmember_form_check(this)">
<input type="hidden" id="mb_id" name="mb_id" value="<?=$mb['mb_id']?>">
<input type="hidden" id="token" name="token" value="<?=$token?>">
<form name="fboardgroupmember_form" id="fboardgroupmember_form" action="./boardgroupmember_update.php" onsubmit="return boardgroupmember_form_check(this)" method="post">
<input type="hidden" name="mb_id" value="<?=$mb['mb_id']?>" id="mb_id">
<input type="hidden" name="token" value="<?=$token?>" id="token">
<fieldset>
<legend><?=$mb['mb_id']?>님 접근가능그룹 추가</legend>
<label for="gr_id">그룹지정</label>
<select id="gr_id" name="gr_id">
<select name="gr_id" id="gr_id">
<option value="">접근가능 그룹을 선택하세요.</option>
<?
$sql = " select *
@ -94,7 +94,7 @@ $colspan = 4;
}
?>
</select>
<input type="submit" class="btn_submit" value="선택" accesskey="s">
<input type="submit" value="선택" class="btn_submit" accesskey="s">
<p>게시판 그룹이 존재하지 않는다면 <a href="./boardgroup_form.php">게시판그룹생성하기</a></p>
</fieldset>
</form>

View File

@ -55,7 +55,7 @@ include_once('./admin.head.php');
$colspan = 7;
?>
<form id="fsearch" name="fsearch" method="get">
<form name="fsearch" id="fsearch" method="get">
<input type="hidden" name="gr_id" value="<?=$gr_id?>">
<fieldset>
<legend><?=$gr['gr_subject']?>(아이디 <?=$gr['gr_id']?>)에서 검색</legend>
@ -63,14 +63,14 @@ $colspan = 7;
<select id="sfl" name="sfl">
<option value="a.mb_id"<?=get_selected($_GET['sfl'], "a.mb_id")?>>회원아이디</option>
</select>
<input type="text" id="stx" name="stx" class="required frm_input" required value="<? echo $stx ?>" title="검색어(필수)">
<input type="submit" class="btn_submit" value="검색">
<input type="text" name="stx" value="<? echo $stx ?>" id="stx" title="검색어(필수)" required class="required frm_input">
<input type="submit" value="검색" class="btn_submit">
</fieldset>
</form>
<section class="cbox">
<h2><?=$gr['gr_subject']?> 그룹에 접근가능한 회원 목록 (그룹아이디:<?=$gr['gr_id']?>)</h2>
<form id="fboardgroupmember" name="fboardgroupmember" method="post" action="./boardgroupmember_update.php" onsubmit="return fboardgroupmember_submit(this);">
<form name="fboardgroupmember" id="fboardgroupmember" action="./boardgroupmember_update.php" onsubmit="return fboardgroupmember_submit(this);" method="post">
<input type="hidden" name="sst" value="<?=$sst?>">
<input type="hidden" name="sod" value="<?=$sod?>">
<input type="hidden" name="sfl" value="<?=$sfl?>">
@ -82,7 +82,7 @@ $colspan = 7;
<table>
<thead>
<tr>
<th scope="col"><input type="checkbox" id="chkall" name="chkall" value="1" title="현재 페이지 접근가능회원 전체선택" onclick="check_all(this.form)"></th>
<th scope="col"><input type="checkbox" name="chkall" value="1" id="chkall" title="현재 페이지 접근가능회원 전체선택" onclick="check_all(this.form)"></th>
<th scope="col">그룹</th>
<th scope="col"><?=subject_sort_link('b.mb_id', 'gr_id='.$gr_id)?>회원아이디</a></th>
<th scope="col"><?=subject_sort_link('b.mb_name', 'gr_id='.$gr_id)?>이름</a></th>
@ -107,7 +107,7 @@ $colspan = 7;
$mb_nick = get_sideview($row['mb_id'], $row['mb_nick'], $row['mb_email'], $row['mb_homepage']);
?>
<tr>
<td class="td_chk"><input type="checkbox" id="chk_<?=$i?>" name="chk[]" value="<?=$row['gm_id']?>" title="<?=$row['mb_nick']?> 회원 선택"></td>
<td class="td_chk"><input type="checkbox" name="chk[]" value="<?=$row['gm_id']?>" id="chk_<?=$i?>" title="<?=$row['mb_nick']?> 회원 선택"></td>
<td class="td_grid"><?=$group?></td>
<td class="td_mbid"><?=$row['mb_id']?></td>
<td class="td_mbname"><?=$row['mb_name']?></td>

View File

@ -57,8 +57,8 @@ $pg_anchor = "
</ul>";
?>
<form id="fconfigform" name="fconfigform" method="post" onsubmit="return fconfigform_submit(this);">
<input type="hidden" id="token" name="token" value="<?=$token?>">
<form name="fconfigform" id="fconfigform" method="post" onsubmit="return fconfigform_submit(this);">
<input type="hidden" name="token" value="<?=$token?>" id="token">
<section id="frm_basic" class="cbox">
<h2>홈페이지 기본환경 설정</h2>
@ -74,7 +74,7 @@ $pg_anchor = "
<tbody>
<tr>
<th scope="row"><label for="cf_title">홈페이지 제목<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="cf_title" name="cf_title" class="required frm_input" required value="<?=$config['cf_title']?>" size="40"></td>
<td><input type="text" name="cf_title" value="<?=$config['cf_title']?>" id="cf_title" required class="required frm_input" size="40"></td>
<th scope="row"><label for="cf_admin">최고관리자<strong class="sound_only">필수</strong></label></th>
<td><?=get_member_id_select('cf_admin', 10, $config['cf_admin'], 'required')?></td>
</tr>
@ -82,112 +82,112 @@ $pg_anchor = "
<th scope="row"><label for="cf_include_index">초기화면 파일 경로</label></th>
<td colspan="3">
<?=help('입력이 없으면 index.php가 초기화면 파일의 기본 경로로 설정됩니다.')?>
<input type="text" id="cf_include_index" name="cf_include_index" class="frm_input" value="<?=$config['cf_include_index']?>" size="50">
<input type="text" name="cf_include_index" value="<?=$config['cf_include_index']?>" id="cf_include_index" class="frm_input" size="50">
</td>
</tr>
<tr>
<th scope="row"><label for="cf_include_head">상단 파일 경로</label></th>
<td colspan="3">
<?=help('입력이 없으면 head.php가 상단 파일의 기본 경로로 설정됩니다.')?>
<input type="text" id="cf_include_head" name="cf_include_head" class="frm_input" value="<?=$config['cf_include_head']?>" size="50">
<input type="text" name="cf_include_head" value="<?=$config['cf_include_head']?>" id="cf_include_head" class="frm_input" size="50">
</td>
</tr>
<tr>
<th scope="row"><label for="cf_include_tail">하단 파일 경로</label></th>
<td colspan="3">
<?=help('입력이 없으면 tail.php가 상단 파일의 기본 경로로 설정됩니다.')?>
<input type="text" id="cf_include_tail" name="cf_include_tail" class="frm_input" value="<?=$config['cf_include_tail']?>" size="50">
<input type="text" name="cf_include_tail" value="<?=$config['cf_include_tail']?>" id="cf_include_tail" class="frm_input" size="50">
</td>
</tr>
<tr>
<th scope="row"><label for="cf_add_script">추가 script, css</label></th>
<td colspan="3">
<?=help('HTML의 </HEAD> 태그위로 추가될 JavaScript와 css 코드를 설정합니다.')?>
<textarea id="cf_add_script" name="cf_add_script"><?=$config['cf_add_script']?></textarea>
<textarea name="cf_add_script" id="cf_add_script"><?=$config['cf_add_script']?></textarea>
</td>
</tr>
<tr>
<th scope="row"><label for="cf_use_point">포인트 사용</label></th>
<td colspan="3"><input type="checkbox" id="cf_use_point" name="cf_use_point" value="1" <?=$config['cf_use_point']?'checked':'';?>> 사용</td>
<td colspan="3"><input type="checkbox" name="cf_use_point" value="1" id="cf_use_point" <?=$config['cf_use_point']?'checked':'';?>> 사용</td>
</tr>
<tr>
<th scope="row"><label for="cf_login_point">로그인시 포인트<strong class="sound_only">필수</strong></label></th>
<td>
<?=help('회원에게 하루에 한번만 부여')?>
<input type="text" id="cf_login_point" name="cf_login_point" class="required frm_input" required value="<?=$config['cf_login_point']?>" size="2"> 점
<input type="text" name="cf_login_point" value="<?=$config['cf_login_point']?>" id="cf_login_point" required class="required frm_input" size="2"> 점
</td>
<th scope="row"><label for="cf_memo_send_point">쪽지보낼시 차감 포인트<strong class="sound_only">필수</strong></label></th>
<td>
<?=help('양수로 입력하십시오. 0점은 쪽지 보낼시 포인트를 차감하지 않습니다.')?>
<input type="text" id="cf_memo_send_point" name="cf_memo_send_point" class="required frm_input" required value="<?=$config['cf_memo_send_point']?>" size="2"> 점
<input type="text" name="cf_memo_send_point" value="<?=$config['cf_memo_send_point']?>" id="cf_memo_send_point" required class="required frm_input" size="2"> 점
</td>
</tr>
<tr>
<th scope="row"><label for="cf_cut_name">이름(별명) 표시</label></th>
<td colspan="3">
<?=help('영숫자 2글자 = 한글 1글자')?>
<input type="text" id="cf_cut_name" name="cf_cut_name" class="frm_input" value="<?=$config['cf_cut_name']?>" size="2"> 자리만 표시
<input type="text" name="cf_cut_name" value="<?=$config['cf_cut_name']?>" id="cf_cut_name" class="frm_input" size="2"> 자리만 표시
</td>
</tr>
<tr>
<th scope="row"><label for="cf_nick_modify">별명 수정</label></th>
<td>수정하면 <input type="text" id="cf_nick_modify" name="cf_nick_modify" class="frm_input" value="<?=$config['cf_nick_modify']?>" size="1"> 일 동안 바꿀 수 없음</td>
<td>수정하면 <input type="text" name="cf_nick_modify" value="<?=$config['cf_nick_modify']?>" id="cf_nick_modify" class="frm_input" size="1"> 일 동안 바꿀 수 없음</td>
<th scope="row"><label for="cf_open_modify">정보공개 수정</label></th>
<td>수정하면 <input type="text" id="cf_open_modify" name="cf_open_modify" class="frm_input" value="<?=$config['cf_open_modify']?>" size="1"> 일 동안 바꿀 수 없음</td>
<td>수정하면 <input type="text" name="cf_open_modify" value="<?=$config['cf_open_modify']?>" id="cf_open_modify" class="frm_input" size="1"> 일 동안 바꿀 수 없음</td>
</tr>
<tr>
<th scope="row"><label for="cf_new_del">최근게시물 삭제</label></th>
<td>
<?=help('설정일이 지난 최근게시물 자동 삭제')?>
<input type="text" id="cf_new_del" name="cf_new_del" class="frm_input" value="<?=$config['cf_new_del']?>" size="2"> 일
<input type="text" name="cf_new_del" value="<?=$config['cf_new_del']?>" id="cf_new_del" class="frm_input" size="2"> 일
</td>
<th scope="row"><label for="cf_memo_del">쪽지 삭제</label></th>
<td>
<?=help('설정일이 지난 쪽지 자동 삭제')?>
<input type="text" id="cf_memo_del" name="cf_memo_del" class="frm_input" value="<?=$config['cf_memo_del']?>" size="2"> 일
<input type="text" name="cf_memo_del" value="<?=$config['cf_memo_del']?>" id="cf_memo_del" class="frm_input" size="2"> 일
</td>
</tr>
<tr>
<th scope="row"><label for="cf_visit_del">접속자로그 삭제</label></th>
<td>
<?=help('설정일이 지난 접속자 로그 자동 삭제')?>
<input type="text" id="cf_visit_del" name="cf_visit_del" class="frm_input" value="<?=$config['cf_visit_del']?>" size="2"> 일
<input type="text" name="cf_visit_del" value="<?=$config['cf_visit_del']?>" id="cf_visit_del" class="frm_input" size="2"> 일
</td>
<th scope="row"><label for="cf_popular_del">인기검색어 삭제</label></th>
<td>
<?=help('설정일이 지난 인기검색어 자동 삭제')?>
<input type="text" id="cf_popular_del" name="cf_popular_del" class="frm_input" value="<?=$config['cf_popular_del']?>" size="2"> 일
<input type="text" name="cf_popular_del" value="<?=$config['cf_popular_del']?>" id="cf_popular_del" class="frm_input" size="2"> 일
</td>
</tr>
<tr>
<th scope="row"><label for="cf_login_minutes">현재 접속자</label></th>
<td colspan="3">
<?=help('설정값 이내의 접속자를 현재 접속자로 인정')?>
<input type="text" id="cf_login_minutes" name="cf_login_minutes" class="frm_input" value="<?=$config['cf_login_minutes']?>" size="2"> 분
<input type="text" name="cf_login_minutes" value="<?=$config['cf_login_minutes']?>" id="cf_login_minutes" class="frm_input" size="2"> 분
</td>
</tr>
<tr>
<th scope="row"><label for="cf_page_rows">한페이지당 라인수</label></th>
<td>
<?=help('목록(리스트) 한페이지당 라인수')?>
<input type="text" id="cf_page_rows" name="cf_page_rows" class="frm_input" value="<?=$config['cf_page_rows']?>" size="2"> 라인
<input type="text" name="cf_page_rows" value="<?=$config['cf_page_rows']?>" id="cf_page_rows" class="frm_input" size="2"> 라인
</td>
<th scope="row"><label for="cf_new_rows">최근게시물 라인수</label></th>
<td colspan="3">
<?=help('목록 한페이지당 라인수')?>
<input type="text" id="cf_new_rows" name="cf_new_rows" class="frm_input" value="<?=$config['cf_new_rows']?>" size="2"> 라인
<input type="text" name="cf_new_rows" value="<?=$config['cf_new_rows']?>" id="cf_new_rows" class="frm_input" size="2"> 라인
</td>
</tr>
<tr>
<th scope="row"><label for="cf_write_pages">페이지 표시 수<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="cf_write_pages" name="cf_write_pages" class="required numeric frm_input" required value="<?=$config['cf_write_pages']?>" size="3"> 페이지씩 표시</td>
<td><input type="text" name="cf_write_pages" value="<?=$config['cf_write_pages']?>" id="cf_write_pages" required class="required numeric frm_input" size="3"> 페이지씩 표시</td>
<th scope="row"><label for="cf_mobile_pages">모바일 페이지 표시 수<strong class="sound_only">필수</strong></label></th>
<td colspan="3"><input type="text" id="cf_mobile_pages" name="cf_mobile_pages" class="required numeric frm_input" required value="<?=$config['cf_mobile_pages']?>" size="3"> 페이지씩 표시</td>
<td colspan="3"><input type="text" name="cf_mobile_pages" value="<?=$config['cf_mobile_pages']?>" id="cf_mobile_pages" required class="required numeric frm_input" size="3"> 페이지씩 표시</td>
</tr>
<tr>
<th scope="row"><label for="cf_new_skin">최근게시물 스킨<strong class="sound_only">필수</strong></label></th>
<td>
<select id="cf_new_skin" name="cf_new_skin" class="required" required>
<select name="cf_new_skin" id="cf_new_skin" required class="required">
<?
$arr = get_skin_dir('new');
for ($i=0; $i<count($arr); $i++) {
@ -198,7 +198,7 @@ $pg_anchor = "
</td>
<th scope="row"><label for="cf_mobile_new_skin">모바일<br>최근게시물 스킨<strong class="sound_only">필수</strong></label></th>
<td>
<select id="cf_mobile_new_skin" name="cf_mobile_new_skin" class="required" required>
<select name="cf_mobile_new_skin" id="cf_mobile_new_skin" required class="required">
<?
$arr = get_skin_dir('new', G4_MOBILE_PATH.'/'.G4_SKIN_DIR);
for ($i=0; $i<count($arr); $i++) {
@ -211,7 +211,7 @@ $pg_anchor = "
<tr>
<th scope="row"><label for="cf_search_skin">검색 스킨<strong class="sound_only">필수</strong></label></th>
<td>
<select id="cf_search_skin" name="cf_search_skin" class="required" required>
<select name="cf_search_skin" id="cf_search_skin" required class="required">
<?
$arr = get_skin_dir('search');
for ($i=0; $i<count($arr); $i++) {
@ -222,7 +222,7 @@ $pg_anchor = "
</td>
<th scope="row"><label for="cf_mobile_search_skin">모바일 검색 스킨<strong class="sound_only">필수</strong></label></th>
<td>
<select id="cf_mobile_search_skin" name="cf_mobile_search_skin" class="required" required>
<select name="cf_mobile_search_skin" id="cf_mobile_search_skin" required class="required">
<?
$arr = get_skin_dir('search', G4_MOBILE_PATH.'/'.G4_SKIN_DIR);
for ($i=0; $i<count($arr); $i++) {
@ -235,7 +235,7 @@ $pg_anchor = "
<tr>
<th scope="row"><label for="cf_connect_skin">접속자 스킨<strong class="sound_only">필수</strong></label></th>
<td>
<select id="cf_connect_skin" name="cf_connect_skin" class="required" required>
<select name="cf_connect_skin" id="cf_connect_skin" required class="required">
<?
$arr = get_skin_dir('connect');
for ($i=0; $i<count($arr); $i++) {
@ -246,7 +246,7 @@ $pg_anchor = "
</td>
<th scope="row"><label for="cf_mobile_connect_skin">모바일 접속자 스킨<strong class="sound_only">필수</strong></label></th>
<td>
<select id="cf_mobile_connect_skin" name="cf_mobile_connect_skin" class="required" required>
<select name="cf_mobile_connect_skin" id="cf_mobile_connect_skin" required class="required">
<?
$arr = get_skin_dir('connect', G4_MOBILE_PATH.'/'.G4_SKIN_DIR);
for ($i=0; $i<count($arr); $i++) {
@ -260,19 +260,19 @@ $pg_anchor = "
<th scope="row"><label for="cf_use_copy_log">복사, 이동시 로그</label></th>
<td colspan="3">
<?=help('게시물 아래에 누구로 부터 복사, 이동됨 표시')?>
<input type="checkbox" id="cf_use_copy_log" name="cf_use_copy_log" value="1" <?=$config['cf_use_copy_log']?'checked':'';?>> 남김
<input type="checkbox" name="cf_use_copy_log" value="1" id="cf_use_copy_log" <?=$config['cf_use_copy_log']?'checked':'';?>> 남김
</td>
</tr>
<tr>
<th scope="row"><label for="cf_possible_ip">접근가능 IP</label></th>
<td>
<?=help('입력된 IP의 컴퓨터만 접근할 수 있습니다.<br>123.123.+ 도 입력 가능. (엔터로 구분)')?>
<textarea id="cf_possible_ip" name="cf_possible_ip"><?=$config['cf_possible_ip']?> </textarea>
<textarea name="cf_possible_ip" id="cf_possible_ip"><?=$config['cf_possible_ip']?> </textarea>
</td>
<th scope="row"><label for="cf_intercept_ip">접근차단 IP</label></th>
<td>
<?=help('입력된 IP의 컴퓨터는 접근할 수 없음.<br>123.123.+ 도 입력 가능. (엔터로 구분)')?>
<textarea id="cf_intercept_ip" name="cf_intercept_ip"><?=$config['cf_intercept_ip']?> </textarea>
<textarea name="cf_intercept_ip" id="cf_intercept_ip"><?=$config['cf_intercept_ip']?> </textarea>
</td>
</tr>
</tbody>
@ -294,7 +294,7 @@ $pg_anchor = "
<tbody>
<tr>
<th scope="row"><label for="cf_delay_sec">글쓰기 간격<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="cf_delay_sec" name="cf_delay_sec" class="required numeric frm_input" required value="<?=$config['cf_delay_sec']?>" size="3"> 초 지난후 가능</td>
<td><input type="text" name="cf_delay_sec" value="<?=$config['cf_delay_sec']?>" id="cf_delay_sec" required class="required numeric frm_input" size="3"> 초 지난후 가능</td>
<th scope="row"><label for="cf_link_target">새창 링크</label></th>
<td>
<?=help('글내용중 자동 링크되는 타켓을 지정합니다.')?>
@ -308,46 +308,46 @@ $pg_anchor = "
</tr>
<tr>
<th scope="row"><label for="cf_read_point">글읽기 포인트<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="cf_read_point" name="cf_read_point" class="required frm_input" required value="<?=$config['cf_read_point']?>" size="3"> 점</td>
<td><input type="text" name="cf_read_point" value="<?=$config['cf_read_point']?>" id="cf_read_point" required class="required frm_input" size="3"> 점</td>
<th scope="row"><label for="cf_write_point">글쓰기 포인트</label></th>
<td><input type="text" id="cf_write_point" name="cf_write_point" class="required frm_input" required value="<?=$config['cf_write_point']?>" size="3"> 점</td>
<td><input type="text" name="cf_write_point" value="<?=$config['cf_write_point']?>" id="cf_write_point" required class="required frm_input" size="3"> 점</td>
</tr>
<tr>
<th scope="row"><label for="cf_comment_point">댓글쓰기 포인트</label></th>
<td><input type="text" id="cf_comment_point" name="cf_comment_point" class="required frm_input" required value="<?=$config['cf_comment_point']?>" size="3"> 점</td>
<td><input type="text" name="cf_comment_point" value="<?=$config['cf_comment_point']?>" id="cf_comment_point" required class="required frm_input" size="3"> 점</td>
<th scope="row"><label for="cf_download_point">다운로드 포인트</label></th>
<td><input type="text" id="cf_download_point" name="cf_download_point" class="required frm_input" required value="<?=$config['cf_download_point']?>" size="3"> 점</td>
<td><input type="text" name="cf_download_point" value="<?=$config['cf_download_point']?>" id="cf_download_point" required class="required frm_input" size="3"> 점</td>
</tr>
<tr>
<th scope="row"><label for="cf_search_part">검색 단위</label></th>
<td colspan="3"><input type="text" id="cf_search_part" name="cf_search_part" class="frm_input" value="<?=$config['cf_search_part']?>" size="4"> 건 단위로 검색</td>
<td colspan="3"><input type="text" name="cf_search_part" value="<?=$config['cf_search_part']?>" id="cf_search_part" class="frm_input" size="4"> 건 단위로 검색</td>
</tr>
<tr>
<th scope="row"><label for="cf_image_extension">이미지 업로드 확장자</label></th>
<td colspan="3">
<?=help('게시판 글작성시 이미지 파일 업로드 가능 확장자. | 로 구분')?>
<input type="text" id="cf_image_extension" name="cf_image_extension" class="frm_input" value="<?=$config['cf_image_extension']?>" size="70">
<input type="text" name="cf_image_extension" value="<?=$config['cf_image_extension']?>" id="cf_image_extension" class="frm_input" size="70">
</td>
</tr>
<tr>
<th scope="row"><label for="cf_flash_extension">플래쉬 업로드 확장자</label></th>
<td colspan="3">
<?=help('게시판 글작성시 플래쉬 파일 업로드 가능 확장자. | 로 구분')?>
<input type="text" id="cf_flash_extension" name="cf_flash_extension" class="frm_input" value="<?=$config['cf_flash_extension']?>" size="70">
<input type="text" name="cf_flash_extension" value="<?=$config['cf_flash_extension']?>" id="cf_flash_extension" class="frm_input" size="70">
</td>
</tr>
<tr>
<th scope="row"><label for="cf_movie_extension">동영상 업로드 확장자</label></th>
<td colspan="3">
<?=help('게시판 글작성시 동영상 파일 업로드 가능 확장자. | 로 구분')?>
<input type="text" id="cf_movie_extension" name="cf_movie_extension" class="frm_input" value="<?=$config['cf_movie_extension']?>" size="70">
<input type="text" name="cf_movie_extension" value="<?=$config['cf_movie_extension']?>" id="cf_movie_extension" class="frm_input" size="70">
</td>
</tr>
<tr>
<th scope="row"><label for="cf_filter">단어 필터링</label></th>
<td colspan="3">
<?=help('입력된 단어가 포함된 내용은 게시할 수 없습니다. 단어와 단어 사이는 ,로 구분합니다.')?>
<textarea id="cf_filter" name="cf_filter" rows="7"><?=$config['cf_filter']?> </textarea>
<textarea name="cf_filter" id="cf_filter" rows="7"><?=$config['cf_filter']?> </textarea>
</td>
</tr>
</tbody>
@ -370,7 +370,7 @@ $pg_anchor = "
<tr>
<th scope="row"><label for="cf_member_skin">회원 스킨<strong class="sound_only">필수</strong></label></th>
<td>
<select id="cf_member_skin" name="cf_member_skin" class="required" required>
<select name="cf_member_skin" id="cf_member_skin" required class="required">
<?
$arr = get_skin_dir('member');
for ($i=0; $i<count($arr); $i++) {
@ -381,7 +381,7 @@ $pg_anchor = "
</td>
<th scope="row"><label for="cf_mobile_member_skin">모바일<br>회원 스킨<strong class="sound_only">필수</strong></label></th>
<td>
<select id="cf_mobile_member_skin" name="cf_mobile_member_skin" class="required" required>
<select name="cf_mobile_member_skin" id="cf_mobile_member_skin" required class="required">
<?
$arr = get_skin_dir('member', G4_MOBILE_PATH.'/'.G4_SKIN_DIR);
for ($i=0; $i<count($arr); $i++) {
@ -394,54 +394,54 @@ $pg_anchor = "
<tr>
<th scope="row">홈페이지 입력</th>
<td>
<input type="checkbox" id="cf_use_homepage" name="cf_use_homepage" value="1" <?=$config['cf_use_homepage']?'checked':'';?>> <label for="cf_use_homepage">보이기</label>
<input type="checkbox" id="cf_req_homepage" name="cf_req_homepage" value="1" <?=$config['cf_req_homepage']?'checked':'';?>> <label for="cf_req_homepage">필수입력</label>
<input type="checkbox" name="cf_use_homepage" value="1" id="cf_use_homepage" <?=$config['cf_use_homepage']?'checked':'';?>> <label for="cf_use_homepage">보이기</label>
<input type="checkbox" name="cf_req_homepage" value="1" id="cf_req_homepage" <?=$config['cf_req_homepage']?'checked':'';?>> <label for="cf_req_homepage">필수입력</label>
</td>
<th scope="row">주소 입력</th>
<td>
<input type="checkbox" id="cf_use_addr" name="cf_use_addr" value="1" <?=$config['cf_use_addr']?'checked':'';?>> <label for="cf_use_addr">보이기</label>
<input type="checkbox" id="cf_req_addr" name="cf_req_addr" value="1" <?=$config['cf_req_addr']?'checked':'';?>> <label for="cf_req_addr">필수입력</label>
<input type="checkbox" name="cf_use_addr" value="1" id="cf_use_addr" <?=$config['cf_use_addr']?'checked':'';?>> <label for="cf_use_addr">보이기</label>
<input type="checkbox" name="cf_req_addr" value="1" id="cf_req_addr" <?=$config['cf_req_addr']?'checked':'';?>> <label for="cf_req_addr">필수입력</label>
</td>
</tr>
<tr>
<th scope="row">전화번호 입력</th>
<td>
<input type="checkbox" id="cf_use_tel" name="cf_use_tel" value="1" <?=$config['cf_use_tel']?'checked':'';?>> <label for="cf_use_tel">보이기</label>
<input type="checkbox" id="cf_req_tel" name="cf_req_tel" value="1" <?=$config['cf_req_tel']?'checked':'';?>> <label for="cf_req_tel">필수입력</label>
<input type="checkbox" name="cf_use_tel" value="1" id="cf_use_tel" <?=$config['cf_use_tel']?'checked':'';?>> <label for="cf_use_tel">보이기</label>
<input type="checkbox" name="cf_req_tel" value="1" id="cf_req_tel" <?=$config['cf_req_tel']?'checked':'';?>> <label for="cf_req_tel">필수입력</label>
</td>
<th scope="row">핸드폰 입력</th>
<td>
<input type="checkbox" id="cf_use_hp" name="cf_use_hp" value="1" <?=$config['cf_use_hp']?'checked':'';?>> <label for="cf_use_hp">보이기</label>
<input type="checkbox" id="cf_req_hp" name="cf_req_hp" value="1" <?=$config['cf_req_hp']?'checked':'';?>> <label for="cf_req_hp">필수입력</label>
<input type="checkbox" name="cf_use_hp" value="1" id="cf_use_hp" <?=$config['cf_use_hp']?'checked':'';?>> <label for="cf_use_hp">보이기</label>
<input type="checkbox" name="cf_req_hp" value="1" id="cf_req_hp" <?=$config['cf_req_hp']?'checked':'';?>> <label for="cf_req_hp">필수입력</label>
</td>
</tr>
<tr>
<th scope="row">서명 입력</th>
<td>
<input type="checkbox" id="cf_use_signature" name="cf_use_signature" value="1" <?=$config['cf_use_signature']?'checked':'';?>> <label for="cf_use_signature">보이기</label>
<input type="checkbox" id="cf_req_signature" name="cf_req_signature" value="1" <?=$config['cf_req_signature']?'checked':'';?>> <label for="cf_req_signature">필수입력</label>
<input type="checkbox" name="cf_use_signature" value="1" id="cf_use_signature" <?=$config['cf_use_signature']?'checked':'';?>> <label for="cf_use_signature">보이기</label>
<input type="checkbox" name="cf_req_signature" value="1" id="cf_req_signature" <?=$config['cf_req_signature']?'checked':'';?>> <label for="cf_req_signature">필수입력</label>
</td>
<th scope="row">자기소개 입력</th>
<td>
<input type="checkbox" id="cf_use_profile" name="cf_use_profile" value="1" <?=$config['cf_use_profile']?'checked':'';?>> <label for="cf_use_profile">보이기</label>
<input type="checkbox" id="cf_req_profile" name="cf_req_profile" value="1" <?=$config['cf_req_profile']?'checked':'';?>> <label for="cf_req_profile">필수입력</label>
<input type="checkbox" name="cf_use_profile" value="1" id="cf_use_profile" <?=$config['cf_use_profile']?'checked':'';?>> <label for="cf_use_profile">보이기</label>
<input type="checkbox" name="cf_req_profile" value="1" id="cf_req_profile" <?=$config['cf_req_profile']?'checked':'';?>> <label for="cf_req_profile">필수입력</label>
</td>
</tr>
<tr>
<th scope="row"><label for="cf_register_level">회원가입시 권한</label></th>
<td><?=get_member_level_select('cf_register_level', 1, 9, $config['cf_register_level']) ?></td>
<th scope="row"><label for="cf_register_point">회원가입시 포인트</label></th>
<td><input type="text" id="cf_register_point" name="cf_register_point" class="frm_input" value="<?=$config['cf_register_point']?>" size="5"> 점</td>
<td><input type="text" name="cf_register_point" value="<?=$config['cf_register_point']?>" id="cf_register_point" class="frm_input" size="5"> 점</td>
</tr>
<tr>
<th scope="row"><label for="cf_kcpcert_site_cd">KCP 사이트코드</label></th>
<td><input type="text" id="cf_kcpcert_site_cd" name="cf_kcpcert_site_cd" class="frm_input" value="<?=$config['cf_kcpcert_site_cd']?>" size="10"></td>
<td><input type="text" name="cf_kcpcert_site_cd" value="<?=$config['cf_kcpcert_site_cd']?>" id="cf_kcpcert_site_cd" class="frm_input" size="10"></td>
<th scope="row"><label for='cf_adult_check'>성인인증 사용</label></th>
<td><input type="checkbox" id="cf_adult_check" name="cf_adult_check" value="1" <?=$config['cf_adult_check']?'checked':'';?>> 사용</td>
<td><input type="checkbox" name="cf_adult_check" value="1" id="cf_adult_check" <?=$config['cf_adult_check']?'checked':'';?>> 사용</td>
</tr>
<tr>
<th scope="row" id="th310"><label for='cf_leave_day'>회원탈퇴후 삭제일</label></th>
<td colspan="3"><input type="text" id="cf_leave_day" name="cf_leave_day" class="frm_input" value="<?=$config['cf_leave_day']?>" size="2"> 일 후 자동 삭제</td>
<td colspan="3"><input type="text" name="cf_leave_day" value="<?=$config['cf_leave_day']?>" id="cf_leave_day" class="frm_input" size="2"> 일 후 자동 삭제</td>
</tr>
<tr>
<th scope="row"><label for="cf_use_member_icon">회원아이콘 사용</label></th>
@ -458,37 +458,37 @@ $pg_anchor = "
</tr>
<tr>
<th scope="row"><label for="cf_member_icon_size">회원아이콘 용량</label></th>
<td><input type="text" id="cf_member_icon_size" name="cf_member_icon_size" class="frm_input" value="<?=$config['cf_member_icon_size']?>" size="10"> 바이트 이하</td>
<td><input type="text" name="cf_member_icon_size" value="<?=$config['cf_member_icon_size']?>" id="cf_member_icon_size" class="frm_input" size="10"> 바이트 이하</td>
<th scope="row">회원아이콘 사이즈</th>
<td>
<label for="cf_member_icon_width">가로</label>
<input type="text" id="cf_member_icon_width" name="cf_member_icon_width" class="frm_input" value="<?=$config['cf_member_icon_width']?>" size="2">
<input type="text" name="cf_member_icon_width" value="<?=$config['cf_member_icon_width']?>" id="cf_member_icon_width" class="frm_input" size="2">
<label for="cf_member_icon_height">세로</label>
<input type="text" id="cf_member_icon_height" name="cf_member_icon_height" class="frm_input" value="<?=$config['cf_member_icon_height']?>" size="2">
<input type="text" name="cf_member_icon_height" value="<?=$config['cf_member_icon_height']?>" id="cf_member_icon_height" class="frm_input" size="2">
픽셀 이하
</td>
</tr>
<tr>
<th scope="row"><label for="cf_use_recommend">추천인제도 사용</label></th>
<td><input type="checkbox" id="cf_use_recommend" name="cf_use_recommend" value="1" <?=$config['cf_use_recommend']?'checked':'';?>> 사용</td>
<td><input type="checkbox" name="cf_use_recommend" value="1" id="cf_use_recommend" <?=$config['cf_use_recommend']?'checked':'';?>> 사용</td>
<th scope="row"><label for="cf_recommend_point">추천인 포인트</label></th>
<td><input type="text" id="cf_recommend_point" name="cf_recommend_point" class="frm_input" value="<?=$config['cf_recommend_point']?>"> 점</td>
<td><input type="text" name="cf_recommend_point" value="<?=$config['cf_recommend_point']?>" id="cf_recommend_point" class="frm_input"> 점</td>
</tr>
<tr>
<th scope="row"><label for="cf_prohibit_id">아이디,별명 금지단어</label></th>
<td>
<?=help('회원아이디, 별명으로 사용할 수 없는 단어를 정합니다. 쉼표 (,) 로 구분')?>
<textarea id="cf_prohibit_id" name="cf_prohibit_id" rows="5"><?=$config['cf_prohibit_id']?></textarea>
<textarea name="cf_prohibit_id" id="cf_prohibit_id" rows="5"><?=$config['cf_prohibit_id']?></textarea>
</td>
<th scope="row"><label for="cf_prohibit_email">입력 금지 메일</label></th>
<td>
<?=help('hotmail.com과 같은 메일 주소는 사용하지 못하도록 못합니다. 엔터로 구분')?>
<textarea id="cf_prohibit_email" name="cf_prohibit_email" rows="5"><?=$config['cf_prohibit_email']?></textarea>
<textarea name="cf_prohibit_email" id="cf_prohibit_email" rows="5"><?=$config['cf_prohibit_email']?></textarea>
</td>
</tr>
<tr>
<th scope="row"><label for="cf_stipulation">회원가입약관</label></th>
<td colspan="3"><textarea id="cf_stipulation" name="cf_stipulation" rows="10"><?=$config['cf_stipulation']?></textarea></td>
<td colspan="3"><textarea name="cf_stipulation" id="cf_stipulation" rows="10"><?=$config['cf_stipulation']?></textarea></td>
</tr>
<tr>
<th scope="row"><label for="cf_privacy">개인정보취급방침</label></th>
@ -512,21 +512,21 @@ $pg_anchor = "
<th scope="row"><label for="cf_email_use">메일발송 사용</label></th>
<td>
<?=help('체크하지 않으면 메일발송을 아예 사용하지 않습니다. 메일 테스트도 불가합니다.')?>
<input type="checkbox" id="cf_email_use" name="cf_email_use" value="1" <?=$config['cf_email_use']?'checked':'';?>> 사용
<input type="checkbox" name="cf_email_use" value="1" id="cf_email_use" <?=$config['cf_email_use']?'checked':'';?>> 사용
</td>
</tr>
<tr>
<th scope="row"><label for="cf_use_email_certify">메일인증 사용</label></th>
<td>
<?=help('메일에 배달된 인증 주소를 클릭하여야 회원으로 인정합니다.');?>
<input type="checkbox" id="cf_use_email_certify" name="cf_use_email_certify" value="1" <?=$config['cf_use_email_certify']?'checked':'';?>> 사용
<input type="checkbox" name="cf_use_email_certify" value="1" id="cf_use_email_certify" <?=$config['cf_use_email_certify']?'checked':'';?>> 사용
</td>
</tr>
<tr>
<th scope="row"><label for="cf_formmail_is_member">폼메일 사용 여부</label></th>
<td>
<?=help('체크하지 않으면 비회원도 사용 할 수 있습니다.')?>
<input type="checkbox" id="cf_formmail_is_member" name="cf_formmail_is_member" value="1" <?=$config['cf_formmail_is_member']?'checked':'';?>> 회원만 사용
<input type="checkbox" name="cf_formmail_is_member" value="1" id="cf_formmail_is_member" <?=$config['cf_formmail_is_member']?'checked':'';?>> 회원만 사용
</td>
</tr>
</table>
@ -546,35 +546,35 @@ $pg_anchor = "
<th scope="row"><label for="cf_email_wr_super_admin">최고관리자</label></th>
<td>
<?=help('최고관리자에게 메일을 발송합니다.')?>
<input type="checkbox" id="cf_email_wr_super_admin" name="cf_email_wr_super_admin" value="1" <?=$config['cf_email_wr_super_admin']?'checked':'';?>> 사용
<input type="checkbox" name="cf_email_wr_super_admin" value="1" id="cf_email_wr_super_admin" <?=$config['cf_email_wr_super_admin']?'checked':'';?>> 사용
</td>
</tr>
<tr>
<th scope="row"><label for="cf_email_wr_group_admin">그룹관리자</label></th>
<td>
<?=help('그룹관리자에게 메일을 발송합니다.')?>
<input type="checkbox" id="cf_email_wr_group_admin" name="cf_email_wr_group_admin" value="1" <?=$config['cf_email_wr_group_admin']?'checked':'';?>> 사용
<input type="checkbox" name="cf_email_wr_group_admin" value="1" id="cf_email_wr_group_admin" <?=$config['cf_email_wr_group_admin']?'checked':'';?>> 사용
</td>
</tr>
<tr>
<th scope="row"><label for="cf_email_wr_board_admin">게시판관리자</label></th>
<td>
<?=help('게시판관리자에게 메일을 발송합니다.')?>
<input type="checkbox" id="cf_email_wr_board_admin" name="cf_email_wr_board_admin" value="1" <?=$config['cf_email_wr_board_admin']?'checked':'';?>> 사용
<input type="checkbox" name="cf_email_wr_board_admin" value="1" id="cf_email_wr_board_admin" <?=$config['cf_email_wr_board_admin']?'checked':'';?>> 사용
</td>
</tr>
<tr>
<th scope="row"><label for="cf_email_wr_write">원글작성자</label></th>
<td>
<?=help('게시자님께 메일을 발송합니다.')?>
<input type="checkbox" id="cf_email_wr_write" name="cf_email_wr_write" value="1" <?=$config['cf_email_wr_write']?'checked':'';?>> 사용
<input type="checkbox" name="cf_email_wr_write" value="1" id="cf_email_wr_write" <?=$config['cf_email_wr_write']?'checked':'';?>> 사용
</td>
</tr>
<tr>
<th scope="row"><label for="cf_email_wr_comment_all">댓글작성자</label></th>
<td>
<?=help('원글에 댓글이 올라오는 경우 댓글 쓴 모든 분들께 메일을 발송합니다.')?>
<input type="checkbox" id="cf_email_wr_comment_all" name="cf_email_wr_comment_all" value="1" <?=$config['cf_email_wr_comment_all']?'checked':'';?>> 사용
<input type="checkbox" name="cf_email_wr_comment_all" value="1" id="cf_email_wr_comment_all" <?=$config['cf_email_wr_comment_all']?'checked':'';?>> 사용
</td>
</tr>
</tbody>
@ -595,14 +595,14 @@ $pg_anchor = "
<th scope="row"><label for="cf_email_mb_super_admin">최고관리자 메일발송</label></th>
<td>
<?=help('최고관리자에게 메일을 발송합니다.')?>
<input type="checkbox" id="cf_email_mb_super_admin" name="cf_email_mb_super_admin" value="1" <?=$config['cf_email_mb_super_admin']?'checked':'';?>> 사용
<input type="checkbox" name="cf_email_mb_super_admin" value="1" id="cf_email_mb_super_admin" <?=$config['cf_email_mb_super_admin']?'checked':'';?>> 사용
</td>
</tr>
<tr>
<th scope="row"><label for="cf_email_mb_member">회원님께 메일발송</label></th>
<td>
<?=help('회원가입한 회원님께 메일을 발송합니다.')?>
<input type="checkbox" id="cf_email_mb_member" name="cf_email_mb_member" value="1" <?=$config['cf_email_mb_member']?'checked':'';?>> 사용
<input type="checkbox" name="cf_email_mb_member" value="1" id="cf_email_mb_member" <?=$config['cf_email_mb_member']?'checked':'';?>> 사용
</td>
</tr>
</tbody>
@ -624,7 +624,7 @@ $pg_anchor = "
<th scope="row"><label for="cf_email_po_super_admin">최고관리자 메일발송</label></th>
<td>
<?=help('최고관리자에게 메일을 발송합니다.')?>
<input type="checkbox" id="cf_email_po_super_admin" name="cf_email_po_super_admin" value="1" <?=$config['cf_email_po_super_admin']?'checked':'';?>> 사용
<input type="checkbox" name="cf_email_po_super_admin" value="1" id="cf_email_po_super_admin" <?=$config['cf_email_po_super_admin']?'checked':'';?>> 사용
</td>
</tr>
</tbody>
@ -647,9 +647,9 @@ $pg_anchor = "
<th scope="row">여분필드<?=$i?></th>
<td>
<label for="cf_<?=$i?>_subj">여분필드<?=$i?> 제목</label>
<input type="text" id="cf_<?=$i?>_subj" name="cf_<?=$i?>_subj" class="frm_input" value="<?=get_text($config['cf_'.$i.'_subj'])?>" size="30">
<input type="text" name="cf_<?=$i?>_subj" value="<?=get_text($config['cf_'.$i.'_subj'])?>" id="cf_<?=$i?>_subj" class="frm_input" size="30">
<label for="cf_<?=$i?>">여분필드<?=$i?> 값</label>
<input type="text" id="cf_<?=$i?>" name="cf_<?=$i?>" class="frm_input" value="<?=$config['cf_'.$i]?>" size="30">
<input type="text" name="cf_<?=$i?>" value="<?=$config['cf_'.$i]?>" id="cf_<?=$i?>" class="frm_input" size="30">
</td>
</tr>
<? } ?>
@ -661,11 +661,11 @@ $pg_anchor = "
<legend>XSS 혹은 CSRF 방지</legend>
<p>관리자 권한을 탈취당하는 경우를 대비하여 패스워드를 다시 한번 확인합니다.</p>
<label for="admin_password">관리자 패스워드<strong class="sound_only">필수</strong></label>
<input type="password" id="admin_password" name="admin_password" class="required frm_input">
<input type="password" name="admin_password" id="admin_password" class="required frm_input">
</fieldset>
<div class="btn_confirm">
<input type="submit" class="btn_submit" accesskey="s" value="확인">
<input type="submit" value="확인" class="btn_submit" accesskey="s">
</div>
</form>

View File

@ -28,10 +28,10 @@ include_once('./admin.head.php');
<div class="cbox">
<p>메일 내용에 {이름} , {별명} , {회원아이디} , {이메일} 처럼 내용에 삽입하면 해당 내용에 맞게 변환하여 메일을 발송합니다.</p>
<form id="fmailform" name="fmailform" method="post" action="./mail_update.php" onsubmit="return fmailform_check(this);">
<input type="hidden" id="w" name="w" value="<?=$w?>">
<input type="hidden" id="ma_id" name="ma_id" value="<?=$ma['ma_id']?>">
<input type="hidden" id="token" name="token" value="<?=$token?>">
<form name="fmailform" id="fmailform" action="./mail_update.php" onsubmit="return fmailform_check(this);" method="post">
<input type="hidden" name="w" value="<?=$w?>" id="w">
<input type="hidden" name="ma_id" value="<?=$ma['ma_id']?>" id="ma_id">
<input type="hidden" name="token" value="<?=$token?>" id="token">
<table class="frm_tbl">
<colgroup>
<col class="grid_3">
@ -40,7 +40,7 @@ include_once('./admin.head.php');
<tbody>
<tr>
<th scope="row"><label for="ma_subject">메일 제목<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="ma_subject" name="ma_subject" value="<?=$ma['ma_subject']?>" size="100" class="required frm_input" required></td>
<td><input type="text" name="ma_subject" value="<?=$ma['ma_subject']?>" id="ma_subject" required class="required frm_input" size="100"></td>
</tr>
<tr>
<th scope="row"><label for="ma_content">메일 내용<strong class="sound_only">필수</strong></label></th>

View File

@ -33,11 +33,11 @@ $colspan = 6;
<a href="./mail_form.php" id="mail_add">메일내용추가</a>
</div>
<form id="fmaillist" name="fmaillist" method="post" action="./mail_delete.php">
<form name="fmaillist" id="fmaillist" action="./mail_delete.php" method="post">
<table>
<thead>
<tr>
<th scope="col"><input type="checkbox" id="chkall" name="chkall" value="1" title="현재 페이지 목록 전체선택" onclick="check_all(this.form)"></th>
<th scope="col"><input type="checkbox" name="chkall" value="1" id="chkall" title="현재 페이지 목록 전체선택" onclick="check_all(this.form)"></th>
<th scope="col">번호</th>
<th scope="col">제목</th>
<th scope="col">작성일시</th>

View File

@ -45,7 +45,7 @@ include_once('./admin.head.php');
전체회원 <?=number_format($tot_cnt)?>명 , 탈퇴대기회원 <?=number_format($finish_cnt)?>명, 정상회원 <?=number_format($tot_cnt - $finish_cnt)?>명 중 메일 발송 대상 선택
</p>
<form id="frmsendmailselectform" name="frmsendmailselectform" method="post" action="./mail_select_list.php" autocomplete="off">
<form name="frmsendmailselectform" id="frmsendmailselectform" action="./mail_select_list.php" method="post" autocomplete="off">
<input type="hidden" name="ma_id" value='<?=$ma_id?>'>
<table class="frm_tbl">
@ -53,23 +53,23 @@ include_once('./admin.head.php');
<tr>
<th scope="row">회원 ID</th>
<td>
<input type="radio" id="mb_id1_all" name="mb_id1" value="1" <?=$mb_id1?"checked":"";?>> <label for="mb_id1_all">전체</label>
<input type="radio" id="mb_id1_section" name="mb_id1" value="0" <?=!$mb_id1?"checked":"";?>> <label for="mb_id1_section">구간</label>
<input type="text" id="mb_id1_from" name="mb_id1_from" class="frm_input" value="<?=$mb_id1_from?>" title="시작구간"> 에서
<input type="text" id="mb_id1_to" name="mb_id1_to" class="frm_input" value="<?=$mb_id1_to?>" title="종료구간"> 까지
<input type="radio" name="mb_id1" value="1" id="mb_id1_all" <?=$mb_id1?"checked":"";?>> <label for="mb_id1_all">전체</label>
<input type="radio" name="mb_id1" value="0" id="mb_id1_section" <?=!$mb_id1?"checked":"";?>> <label for="mb_id1_section">구간</label>
<input type="text" name="mb_id1_from" value="<?=$mb_id1_from?>" id="mb_id1_from" title="시작구간" class="frm_input"> 에서
<input type="text" name="mb_id1_to" value="<?=$mb_id1_to?>" id="mb_id1_to" title="종료구간" class="frm_input"> 까지
</td>
</tr>
<tr>
<th scope="row"><label for="mb_email">E-mail</label></th>
<td>
<?=help("메일 주소에 단어 포함 (예 : @sir.co.kr)")?>
<input type="text" id="mb_email" name="mb_email" class="frm_input" value="<?=$mb_email?>" size="50">
<input type="text" name="mb_email" value="<?=$mb_email?>" id="mb_email" class="frm_input" size="50">
</td>
</tr>
<tr>
<th scope="row"><label for="mb_mailling">메일링</label></th>
<td>
<select id="mb_mailling" name="mb_mailling">
<select name="mb_mailling" id="mb_mailling">
<option value="1">수신동의한 회원만
<option value="">전체
</select>
@ -78,12 +78,12 @@ include_once('./admin.head.php');
<tr>
<th scope="row"><label for="mb_level_from">권한</label></th>
<td>
<select id="mb_level_from" name="mb_level_from" title="최소권한">
<select name="mb_level_from" id="mb_level_from" title="최소권한">
<? for ($i=1; $i<=10; $i++) { ?>
<option value="<? echo $i ?>"><? echo $i ?></option>
<? } ?>
</select> 에서
<select id="mb_level_to" name="mb_level_to" title="최대권한">
<select name="mb_level_to" id="mb_level_to" title="최대권한">
<? for ($i=1; $i<=10; $i++) { ?>
<option value="<? echo $i ?>"><? echo $i ?></option>
<? } ?>
@ -110,7 +110,7 @@ include_once('./admin.head.php');
</table>
<div class="btn_confirm">
<input type="submit" class="btn_submit" value="확인">
<input type="submit" value="확인" class="btn_submit">
<a href="./mail_list.php">목록 </a>
</div>
</form>

View File

@ -71,7 +71,7 @@ include_once('./admin.head.php');
<div class="cbox">
<p>조건에 따라 선택된 메일발송 대상자 목록입니다.</p>
<form id="fmailselectlist" name="fmailselectlist" method="post" action="./mail_select_update.php">
<form name="fmailselectlist" id="fmailselectlist" method="post" action="./mail_select_update.php">
<input type="hidden" name="token" value="<?=$token?>">
<input type="hidden" name="ma_id" value="<?=$ma_id ?>">
<input type="hidden" name="ma_list" value="<?=$ma_list?>">
@ -113,7 +113,7 @@ include_once('./admin.head.php');
</div>
<div class="btn_confirm">
<input type="submit" class="btn_submit" value="메일보내기">
<input type="submit" value="메일보내기" class="btn_submit">
<a href="./mail_select_form.php?ma_id=<?=$ma_id?>">뒤로</a>
</div>

View File

@ -92,7 +92,7 @@ $g4['title'] .= '회원 '.$html_title;
include_once('./admin.head.php');
?>
<form id="fmember" name="fmember" method="post" action="./member_form_update.php" onsubmit="return fmember_submit(this);" enctype="multipart/form-data">
<form name="fmember" id="fmember" action="./member_form_update.php" onsubmit="return fmember_submit(this);" method="post" enctype="multipart/form-data">
<input type="hidden" name="w" value="<?=$w?>">
<input type="hidden" name="sfl" value="<?=$sfl?>">
<input type="hidden" name="stx" value="<?=$stx?>">
@ -113,17 +113,17 @@ include_once('./admin.head.php');
<tr>
<th scope="row"><label for="mb_id">아이디<?=$sound_only?></label></th>
<td>
<input type="text" id="mb_id" name="mb_id" maxlength="20" class="frm_input" <?=$required_mb_id?> value="<?=$mb['mb_id']?>" size="15">
<input type="text" name="mb_id" value="<?=$mb['mb_id']?>" id="mb_id"class="frm_input" size="15" maxlength="20" <?=$required_mb_id?>>
<?if ($w=='u'){?><a href="./boardgroupmember_form.php?mb_id=<?=$mb['mb_id']?>">접근가능그룹보기</a><?}?>
</td>
<th scope="row"><label for="mb_password">패스워드<?=$sound_only?></label></th>
<td><input type="password" id="mb_password" name="mb_password" class="frm_input" maxlength="20" <?=$required_mb_password?> size="15"></td>
<td><input type="password" name="mb_password" id="mb_password" class="frm_input" size="15" maxlength="20" <?=$required_mb_password?>></td>
</tr>
<tr>
<th scope="row"><label for="mb_name">이름(실명)<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="mb_name" name="mb_name" maxlength="20" class="required hangul frm_input minlength=2" required value="<?=$mb['mb_name']?>" size="15"></td>
<td><input type="text" name="mb_name" value="<?=$mb['mb_name']?>" id="mb_name" required class="required hangul frm_input minlength=2" size="15" maxlength="20"></td>
<th scope="row"><label for="mb_nick">별명<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="mb_nick" name="mb_nick" maxlength="20" class="required frm_input minlength=2" required value="<?=$mb['mb_nick']?>" size="15"></td>
<td><input type="text" name="mb_nick" value="<?=$mb['mb_nick']?>" id="mb_nick" required class="required frm_input minlength=2" size="15" maxlength="20"></td>
</tr>
<tr>
<th scope="row"><label for="mb_level">회원 권한</label></th>
@ -133,31 +133,31 @@ include_once('./admin.head.php');
</tr>
<tr>
<th scope="row"><label for="mb_email">E-mail<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="mb_email" name="mb_email" maxlength="100" class="required frm_input email" required value="<?=$mb['mb_email']?>" size="30"></td>
<td><input type="text" name="mb_email" value="<?=$mb['mb_email']?>" id="mb_email" maxlength="100" required class="required frm_input email" size="30"></td>
<th scope="row"><label for="mb_homepage">홈페이지</label></th>
<td><input type="text" id="mb_homepage" name="mb_homepage" class="frm_input" maxlength="255" value="<?=$mb['mb_homepage']?>" size="15"></td>
<td><input type="text" name="mb_homepage" value="<?=$mb['mb_homepage']?>" id="mb_homepage" class="frm_input" maxlength="255" size="15"></td>
</tr>
<tr>
<th scope="row"><label for="mb_tel">전화번호</label></th>
<td><input type="text" id="mb_tel" name="mb_tel" class="frm_input" maxlength="20" value="<?=$mb['mb_tel']?>" size="15"></td>
<td><input type="text" name="mb_tel" value="<?=$mb['mb_tel']?>" id="mb_tel" class="frm_input" size="15" maxlength="20"></td>
<th scope="row"><label for="mb_hp">핸드폰번호</label></th>
<td><input type="text" id="mb_hp" name="mb_hp" class="frm_input" maxlength="20" value="<?=$mb['mb_hp']?>" size="15"></td>
<td><input type="text" name="mb_hp" value="<?=$mb['mb_hp']?>" id="mb_hp" class="frm_input" size="15" maxlength="20"></td>
</tr>
<tr>
<th scope="row"><label for="mb_zip1">주소</label></th>
<td colspan="3" style="line-height:2em">
<input type="text" id="mb_zip1" name="mb_zip1" class="frm_input readonly" maxlength="3" readonly value="<?=$mb['mb_zip1']?>" title="우편번호 앞자리" size="3"> -
<input type="text" id="mb_zip2" name="mb_zip2" class="frm_input readonly" maxlength="3" readonly value="<?=$mb['mb_zip2']?>" title="우편번호 뒷자리" size="3">
<input type="text" name="mb_zip1" value="<?=$mb['mb_zip1']?>" id="mb_zip1" title="우편번호 앞자리" class="frm_input readonly" size="3" maxlength="3" readonly> -
<input type="text" name="mb_zip2" value="<?=$mb['mb_zip2']?>" id="mb_zip2" title="우편번호 뒷자리" class="frm_input readonly" size="3" maxlength="3" readonly>
<a href="<?=G4_BBS_URL.'/zip.php?frm_name=fmember&amp;frm_zip1=mb_zip1&amp;frm_zip2=mb_zip2&amp;frm_addr1=mb_addr1&amp;frm_addr2=mb_addr2'?>" class="win_zip_find btn_frmline">우편번호 검색</a><br>
<input type="text" id="mb_addr1" name="mb_addr1" class="frm_input readonly" readonly value='<?=$mb['mb_addr1']?>' title="행정기본주소" size="50"><br>
<input type="text" id="mb_addr2" name="mb_addr2" class="frm_input" value="<?=$mb['mb_addr2']?>" title="상세주소" size="50"> 상세주소 입력
<input type="text" name="mb_addr1" value="<?=$mb['mb_addr1']?>" id="mb_addr1" title="행정기본주소" class="frm_input readonly" size="50" readonly><br>
<input type="text" name="mb_addr2" value="<?=$mb['mb_addr2']?>" id="mb_addr2" title="상세주소" class="frm_input" size="50"> 상세주소 입력
</td>
</tr>
<tr>
<th scope="row"><label for="mb_icon">회원아이콘</label></th>
<td colspan="3">
<?=help('이미지 크기는 <strong>넓이 '.$config['cf_member_icon_width'].'픽셀 높이 '.$config['cf_member_icon_height'].'픽셀</strong>로 해주세요.')?>
<input type="file" id="mb_icon" name="mb_icon">
<input type="file" name="mb_icon" id="mb_icon">
<?
$mb_dir = substr($mb['mb_id'],0,2);
$icon_file = G4_DATA_PATH.'/member/'.$mb_dir.'/'.$mb['mb_id'].'.gif';
@ -172,39 +172,39 @@ include_once('./admin.head.php');
<tr>
<th scope="row">메일 수신</th>
<td>
<input type="radio" id="mb_mailling_yes" name="mb_mailling" value="1" <?=$mailling_checked?>>
<input type="radio" name="mb_mailling" value="1" id="mb_mailling_yes" <?=$mailling_checked?>>
<label for="mb_mailling_yes">예</label>
<input type="radio" id="mb_mailling_no" name="mb_mailling" value="0" <?=$mailling_no_checked?>>
<input type="radio" name="mb_mailling" value="0" id="mb_mailling_no" <?=$mailling_no_checked?>>
<label for="mb_mailling_no">아니오</label>
</td>
<th scope="row"><label for="mb_sms_yes">SMS 수신</label></th>
<td>
<input type="radio" id="mb_sms_yes" name="mb_sms" value="1" <?=$sms_checked?>>
<input type="radio" name="mb_sms" value="1" id="mb_sms_yes" <?=$sms_checked?>>
<label for="mb_sms_yes">예</label>
<input type="radio" id="mb_sms_no" name="mb_sms" value="0" <?=$sms_no_checked?>>
<input type="radio" name="mb_sms" value="0" id="mb_sms_no" <?=$sms_no_checked?>>
<label for="mb_sms_no">아니오</label>
</td>
</tr>
<tr>
<th scope="row"><label for="mb_open">정보 공개</label></th>
<td colspan="3">
<input type="radio" id="mb_open" name="mb_open" value="1" <?=$open_checked?>>
<input type="radio" name="mb_open" value="1" id="mb_open" <?=$open_checked?>>
<label for="mb_open">예</label>
<input type="radio" id="mb_open_no" name="mb_open" value="0" <?=$open_no_checked?>>
<input type="radio" name="mb_open" value="0" id="mb_open_no"<?=$open_no_checked?>>
<label for="mb_open_no">아니오</label>
</td>
</tr>
<tr>
<th scope="row"><label for="mb_signature">서명</label></th>
<td colspan="3"><textarea id="mb_signature" name="mb_signature"><?=$mb['mb_signature']?></textarea></td>
<td colspan="3"><textarea name="mb_signature"id="mb_signature"><?=$mb['mb_signature']?></textarea></td>
</tr>
<tr>
<th scope="row"><label for="mb_profile">자기 소개</label></th>
<td colspan="3"><textarea id="mb_profile" name="mb_profile"><?=$mb['mb_profile']?></textarea></td>
<td colspan="3"><textarea name="mb_profile" id="mb_profile"><?=$mb['mb_profile']?></textarea></td>
</tr>
<tr>
<th scope="row"><label for="mb_memo">메모</label></th>
<td colspan="3"><textarea id="mb_memo" name="mb_memo"><?=$mb['mb_memo']?></textarea></td>
<td colspan="3"><textarea name="mb_memo" id="mb_memo"><?=$mb['mb_memo']?></textarea></td>
</tr>
<? if ($w == 'u') { ?>
@ -245,20 +245,20 @@ include_once('./admin.head.php');
<tr>
<th scope="row">탈퇴일자</th>
<td>
<input type="text" name="mb_leave_date" class="frm_input" maxlength="8" value="<?=$mb['mb_leave_date']?>">
<input type="checkbox" value="<?=date("Ymd"); ?>" onclick="if (this.form.mb_leave_date.value==this.form.mb_leave_date.defaultValue) { this.form.mb_leave_date.value=this.value; } else { this.form.mb_leave_date.value=this.form.mb_leave_date.defaultValue; }" title="탈퇴일을 오늘로 지정"> 오늘
<input type="text" name="mb_leave_date" value="<?=$mb['mb_leave_date']?>" class="frm_input" maxlength="8">
<input type="checkbox" value="<?=date("Ymd"); ?>" title="탈퇴일을 오늘로 지정" onclick="if (this.form.mb_leave_date.value==this.form.mb_leave_date.defaultValue) { this.form.mb_leave_date.value=this.value; } else { this.form.mb_leave_date.value=this.form.mb_leave_date.defaultValue; }"> 오늘
</td>
<th scope="row">접근차단일자</th>
<td>
<input type="text" name="mb_intercept_date" class="frm_input" maxlength="8" value="<?=$mb['mb_intercept_date']?>">
<input type="checkbox" value="<?=date("Ymd"); ?>" onclick="if (this.form.mb_intercept_date.value==this.form.mb_intercept_date.defaultValue) { this.form.mb_intercept_date.value=this.value; } else { this.form.mb_intercept_date.value=this.form.mb_intercept_date.defaultValue; }" title="접근차단일을 오늘로 지정"> 오늘
<input type="text" name="mb_intercept_date" value="<?=$mb['mb_intercept_date']?>" class="frm_input" maxlength="8">
<input type="checkbox" value="<?=date("Ymd"); ?>" title="접근차단일을 오늘로 지정" onclick="if (this.form.mb_intercept_date.value==this.form.mb_intercept_date.defaultValue) { this.form.mb_intercept_date.value=this.value; } else { this.form.mb_intercept_date.value=this.form.mb_intercept_date.defaultValue; }"> 오늘
</td>
</tr>
<? for ($i=1; $i<=10; $i++) { ?>
<tr>
<th scope="row"><label for="mb_<?=$i?>">여분 필드 <?=$i?></label></th>
<td colspan="3"><input type="text" id="mb_<?=$i?>" name="mb_<?=$i?>" class="frm_input" maxlength="255" value="<?=$mb['mb_'.$i]?>" size="30"></td>
<td colspan="3"><input type="text" id="mb_<?=$i?>" name="mb_<?=$i?>" value="<?=$mb['mb_'.$i]?>" class="frm_input" size="30" maxlength="255"></td>
</tr>
<? } ?>
@ -271,11 +271,11 @@ include_once('./admin.head.php');
<legend>XSS 혹은 CSRF 방지</legend>
<p>관리자 권한을 탈취 당하는 경우를 대비하여 관리자의 패스워드를 다시 한번 확인합니다.</p>
<label for="admin_password">관리자 패스워드<strong class="sound_only">필수</strong></label>
<input type="password" id="admin_password" name="admin_password" class="required frm_input" required>
<input type="password" name="admin_password" id="admin_password" required class="required frm_input">
</fieldset>
<div class="btn_confirm">
<input type="submit" class="btn_submit" accesskey='s' value="확인">
<input type="submit" value="확인" class="btn_submit" accesskey='s'>
<a href="./member_list.php?<?=$qstr?>">목록</a>
</div>
</form>

View File

@ -91,7 +91,7 @@ $colspan = 15;
<option value="mb_ip"<?=get_selected($_GET['sfl'], "mb_ip");?>>IP</option>
<option value="mb_recommend"<?=get_selected($_GET['sfl'], "mb_recommend");?>>추천인</option>
</select>
<input type="text" name="stx" class="required frm_input" required value="<?=$stx?>" title="검색어(필수)">
<input type="text" name="stx" value="<?=$stx?>" title="검색어(필수)" required class="required frm_input">
<input type="submit" class="btn_submit" value="검색">
</fieldset>
</form>
@ -106,7 +106,7 @@ $colspan = 15;
</div>
<?}?>
<form id="fmemberlist" name="fmemberlist" method="post" action="./member_list_update.php" onsubmit="return fmemberlist_submit(this);">
<form name="fmemberlist" id="fmemberlist" action="./member_list_update.php" onsubmit="return fmemberlist_submit(this);" method="post">
<input type="hidden" name="sst" value="<?=$sst?>">
<input type="hidden" name="sod" value="<?=$sod?>">
<input type="hidden" name="sfl" value="<?=$sfl?>">
@ -116,7 +116,7 @@ $colspan = 15;
<table class="tbl_mb_list">
<thead>
<tr>
<th scope="col"><input type="checkbox" id="chkall" name="chkall" value="1" title="현재 페이지 회원 전체선택" onclick="check_all(this.form)"></th>
<th scope="col"><input type="checkbox" name="chkall" value="1" id="chkall" title="현재 페이지 회원 전체선택" onclick="check_all(this.form)"></th>
<th scope="col"><?=subject_sort_link('mb_id')?>회원아이디</a></th>
<th scope="col"><?=subject_sort_link('mb_nick')?>별명</a></th>
<th scope="col"><?=subject_sort_link('mb_name')?>이름</a></th>
@ -177,8 +177,8 @@ $colspan = 15;
<tr>
<td class="td_chk">
<input type="hidden" id="mb_id_<?=$i?>" name="mb_id[<?=$i?>]" value="<?=$row['mb_id']?>">
<input type="checkbox" id="chk_<?=$i?>" name="chk[]" value="<?=$i?>" title="회원선택">
<input type="hidden" name="mb_id[<?=$i?>]" value="<?=$row['mb_id']?>" id="mb_id_<?=$i?>">
<input type="checkbox" name="chk[]" value="<?=$i?>" id="chk_<?=$i?>" title="회원선택">
</td>
<td class="td_mbid">
<?=$mb_id?>
@ -194,7 +194,7 @@ $colspan = 15;
<td><?=preg_match('/[1-9]/', $row['mb_email_certify'])?'<span class="txt_true">Yes</span>':'<span class="txt_false">No</span>';?></td>
<td class="td_chk">
<? if(empty($row['mb_leave_date'])){?>
<input type="checkbox" id="mb_intercept_date_<?=$i?>" name="mb_intercept_date[<?=$i?>]" <?=$row['mb_intercept_date']?'checked':'';?> value="<?=$intercept_date?>" title="<?=$intercept_title?>">
<input type="checkbox" name="mb_intercept_date[<?=$i?>]" <?=$row['mb_intercept_date']?'checked':'';?> value="<?=$intercept_date?>" id="mb_intercept_date_<?=$i?>" title="<?=$intercept_title?>">
<?}?>
</td>
<td class="td_chk"><?=$group?></td>
@ -209,8 +209,8 @@ $colspan = 15;
</table>
<div class="btn_list">
<input type="submit" name="act_button" onclick="document.pressed=this.value" value="선택수정">
<input type="submit" name="act_button" onclick="document.pressed=this.value" value="선택삭제">
<input type="submit" name="act_button" value="선택수정" onclick="document.pressed=this.value">
<input type="submit" name="act_button" value="선택삭제" onclick="document.pressed=this.value">
<? if ($is_admin == 'super') {?><a href="./member_form.php">회원추가</a><?}?>
</div>

View File

@ -76,7 +76,7 @@ function point_clear()
}
</script>
<form id="fsearch" name="fsearch" method="get">
<form name="fsearch" id="fsearch" method="get">
<fieldset>
<legend>포인트 내역 검색</legend>
<span>
@ -104,7 +104,7 @@ function point_clear()
<section class="cbox">
<h2>포인트 내역</h2>
<form id="fpointlist" name="fpointlist" method="post">
<form name="fpointlist" id="fpointlist" method="post">
<input type="hidden" name="sst" value="<?=$sst?>">
<input type="hidden" name="sod" value="<?=$sod?>">
<input type="hidden" name="sfl" value="<?=$sfl?>">
@ -115,7 +115,7 @@ function point_clear()
<table class="tbl_pt_list">
<thead>
<tr>
<th scope="col"><input type="checkbox" id="chkall" name="chkall" value="1" title="현재 페이지 포인트 내역 전체선택" onclick="check_all(this.form)"></th>
<th scope="col"><input type="checkbox" name="chkall" value="1" id="chkall" title="현재 페이지 포인트 내역 전체선택" onclick="check_all(this.form)"></th>
<th scope="col"><?=subject_sort_link('mb_id')?>회원아이디</a></th>
<th scope="col">이름</th>
<th scope="col">별명</th>
@ -178,7 +178,7 @@ function point_clear()
<section id="point_mng" class="cbox">
<h2>개별회원 포인트 증감 설정</h2>
<form id="fpointlist2" name="fpointlist2" method="post" action="./point_update.php" autocomplete="off">
<form name="fpointlist2" method="post" id="fpointlist2" action="./point_update.php" autocomplete="off">
<input type="hidden" name="sfl" value="<?=$sfl?>">
<input type="hidden" name="stx" value="<?=$stx?>">
<input type="hidden" name="sst" value="<?=$sst?>">
@ -194,15 +194,15 @@ function point_clear()
<tbody>
<tr>
<th scope="row"><label for="mb_id">회원아이디<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="mb_id" name="mb_id" class="required frm_input" required value="<?=$mb_id?>"></td>
<td><input type="text" name="mb_id" value="<?=$mb_id?>" id="mb_id" class="required frm_input" required></td>
</tr>
<tr>
<th scope="row"><label for="po_content">포인트 내용<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="po_content" name="po_content" class="required frm_input" required size="80"></td>
<td><input type="text" name="po_content" id="po_content" required class="required frm_input" size="80"></td>
</tr>
<tr>
<th scope="row"><label for="po_point">포인트<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="po_point" name="po_point" class="required frm_input" required></td>
<td><input type="text" name="po_point" id="po_point" required class="required frm_input"></td>
</tr>
</tbody>
</table>
@ -211,11 +211,11 @@ function point_clear()
<legend>XSS 혹은 CSRF 방지</legend>
<p>관리자 권한을 탈취당하는 경우를 대비하여 패스워드를 다시 한번 확인합니다.</p>
<label for="admin_password">관리자패스워드<strong class="sound_only">필수</strong></label>
<input type="password" id="admin_password" name="admin_password" class="required frm_input" required>
<input type="password" name="admin_password" id="admin_password" required class="required frm_input">
</fieldset>
<div class="btn_confirm">
<input type="submit" class="btn_submit" value="확인">
<input type="submit" value="확인" class="btn_submit">
</div>
</form>

View File

@ -21,7 +21,7 @@ include_once('./admin.head.php');
?>
<div class="cbox">
<form id="fpoll" name="fpoll" method="post" action="./poll_form_update.php" enctype="multipart/form-data">
<form name="fpoll" id="fpoll" action="./poll_form_update.php" method="post" enctype="multipart/form-data">
<input type="hidden" name="po_id" value="<?=$po_id?>">
<input type="hidden" name="w" value="<?=$w?>">
<input type="hidden" name="sfl" value="<?=$sfl?>">
@ -34,7 +34,7 @@ include_once('./admin.head.php');
<tbody>
<tr>
<th scope="row"><label for="po_subject">투표 제목<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="po_subject" name="po_subject" class="required frm_input" value="<?=$po['po_subject']?>" size="80" maxlength="125"></td>
<td><input type="text" name="po_subject" value="<?=$po['po_subject']?>" id="po_subject" class="required frm_input" size="80" maxlength="125"></td>
</tr>
<?
@ -51,9 +51,9 @@ include_once('./admin.head.php');
<tr>
<th scope="row"><label for="po_poll<?=$i?>">항목 <?=$i?><?=$sound_only?></label></th>
<td>
<input type="text" id="po_poll<?=$i?>" name="po_poll<?=$i?>" class="frm_input <?=$required?>" value="<?=$po_poll?>" maxlength="125">
<input type="text" name="po_poll<?=$i?>" value="<?=$po_poll?>" id="po_poll<?=$i?>" class="frm_input <?=$required?>" maxlength="125">
<label for="po_cnt<?=$i?>">항목 <?=$i?> 투표수</label>
<input type="text" id="po_cnt<?=$i?>" name="po_cnt<?=$i?>" class="frm_input" value="<?=$po['po_cnt'.$i]?>" size="3">
<input type="text" name="po_cnt<?=$i?>" value="<?=$po['po_cnt'.$i]?>" id="po_cnt<?=$i?>" class="frm_input" size="3">
</td>
</tr>
@ -63,7 +63,7 @@ include_once('./admin.head.php');
<th scope="row"><label for="po_etc">기타의견</label></th>
<td>
<?=help('기타 의견을 남길 수 있도록 하려면, 간단한 질문을 입력하세요.')?>
<input type="text" id="po_etc" name="po_etc" class="frm_input" value="<?=get_text($po['po_etc'])?>" size="80" maxlength="125">
<input type="text" name="po_etc" value="<?=get_text($po['po_etc'])?>" id="po_etc" class="frm_input" size="80" maxlength="125">
</td>
</tr>
<tr>
@ -77,29 +77,29 @@ include_once('./admin.head.php');
<th scope="row"><label for="po_point">포인트</label></th>
<td>
<?=help('투표에 참여한 회원에게 포인트를 부여합니다.')?>
<input type="text" id="po_point" name="po_point" class="frm_input" value="<?=$po['po_point']?>"> 점
<input type="text" name="po_point" value="<?=$po['po_point']?>" id="po_point" class="frm_input"> 점
</td>
</tr>
<? if ($w == 'u') { ?>
<tr>
<th scope="row"><label for="po_date">투표시작일</label></th>
<td><input type="text" id="po_date" name="po_date" class="frm_input" maxlength="10" value="<?=$po['po_date']?>"></td>
<td><input type="text" name="po_date" value="<?=$po['po_date']?>" id="po_date" class="frm_input" maxlength="10"></td>
</tr>
<tr>
<th scope="row"><label for="po_ips">투표참가 IP</label></th>
<td><textarea id="po_ips" name="po_ips" rows="10" readonly><?=preg_replace("/\n/", " / ", $po['po_ips'])?></textarea></td>
<td><textarea name="po_ips" id="po_ips" readonly rows="10"><?=preg_replace("/\n/", " / ", $po['po_ips'])?></textarea></td>
</tr>
<tr>
<th scope="row"><label for="mb_ids">투표참가 회원</label></th>
<td><textarea id="mb_ids" name="mb_ids" rows="10" readonly><?=preg_replace("/\n/", " / ", $po['mb_ids'])?></textarea></td>
<td><textarea name="mb_ids" id="mb_ids" readonly rows="10"><?=preg_replace("/\n/", " / ", $po['mb_ids'])?></textarea></td>
</tr>
<? } ?>
</tbody>
</table>
<div class="btn_confirm">
<input type="submit" class="btn_submit" accesskey="s" value="확인">
<input type="submit" value="확인" class="btn_submit" accesskey="s">
<a href="./poll_list.php?<?=$qstr?>">목록</a>
</div>
</form>

View File

@ -61,10 +61,10 @@ $colspan = 6;
<?=$listall?>
투표수 : <?=number_format($total_count)?>개
</span>
<select id="sfl" name="sfl" title="검색대상">
<select name="sfl" id="sfl" title="검색대상">
<option value="po_subject"<?=get_selected($_GET['sfl'], "po_subject");?>>제목</option>
</select>
<input type="text" name="stx" class="required frm_input" required value="<?=$stx?>" title="검색어(필수)">
<input type="text" name="stx" value="<?=$stx?>" title="검색어(필수)" class="required frm_input" required>
<input type="submit" class="btn_submit" value="검색">
</fieldset>
</form>
@ -76,7 +76,7 @@ $colspan = 6;
<a href="./poll_form.php" id="poll_add">투표 추가</a>
</div>
<form id="fpolllist" name="fpolllist" method="post" action="./poll_delete.php">
<form name="fpolllist" id="fpolllist" action="./poll_delete.php" method="post">
<input type="hidden" name="sst" value="<?=$sst?>">
<input type="hidden" name="sod" value="<?=$sod?>">
<input type="hidden" name="sfl" value="<?=$sfl?>">
@ -86,7 +86,7 @@ $colspan = 6;
<table>
<thead>
<tr>
<th scope="col"><input type="checkbox" id="chkall" name="chkall" value="1" title="현재 페이지 투표 전체선택" onclick="check_all(this.form)"></th>
<th scope="col"><input type="checkbox" name="chkall" value="1" id="chkall" title="현재 페이지 투표 전체선택" onclick="check_all(this.form)"></th>
<th scope="col">번호</th>
<th scope="col">제목</th>
<th scope="col">투표권한</th>
@ -108,7 +108,7 @@ $colspan = 6;
<tr>
<td class="td_chk">
<input type="checkbox" id="chk_<?=$i?>" name="chk[]" value="<?=$row['po_id']?>" title="투표선택">
<input type="checkbox" name="chk[]" value="<?=$row['po_id']?>" id="chk_<?=$i?>" title="투표선택">
</td>
<td class="td_num"><?=$row['po_id']?></td>
<td><?=cut_str(get_text($row['po_subject']),70)?></td>

View File

@ -82,15 +82,15 @@ var list_delete_php = 'popular_list.php';
<option value="pp_word"<?=get_selected($_GET['sfl'], "pp_word");?>>검색어</option>
<option value="pp_date"<?=get_selected($_GET['sfl'], "pp_date");?>>등록일</option>
</select>
<input type="text" name="stx" class="required frm_input" required value="<?=$stx?>" title="검색어(필수)">
<input type="submit" class="btn_submit" value="검색">
<input type="text" name="stx" value="<?=$stx?>" title="검색어(필수)" required class="required frm_input">
<input type="submit" value="검색" class="btn_submit">
</fieldset>
</form>
<section class="cbox">
<h2>인기검색어 목록</h2>
<form id="fpopularlist" name="fpopularlist" method="post">
<form name="fpopularlist" id="fpopularlist" method="post">
<input type="hidden" name="sst" value="<?=$sst?>">
<input type="hidden" name="sod" value="<?=$sod?>">
<input type="hidden" name="sfl" value="<?=$sfl?>">
@ -101,7 +101,7 @@ var list_delete_php = 'popular_list.php';
<table class="tbl_pop_list">
<thead>
<tr>
<th scope="col"><input type="checkbox" id="chkall" name="chkall" value="1" onclick="check_all(this.form)" title="현재 페이지 인기검색어 전체선택"></th>
<th scope="col"><input type="checkbox" name="chkall" value="1" id="chkall" title="현재 페이지 인기검색어 전체선택" onclick="check_all(this.form)"></th>
<th scope="col"><?=subject_sort_link('pp_word')?>검색어</a></th>
<th scope="col">등록일</th>
<th scope="col">등록IP</th>
@ -116,7 +116,7 @@ var list_delete_php = 'popular_list.php';
<tr>
<td class="td_chk">
<input type="checkbox" id="chk_<?=$i?>" name="chk[]" value="<?=$row['pp_id']?>" title="<?=$word?> 선택">
<input type="checkbox" name="chk[]" value="<?=$row['pp_id']?>" id="chk_<?=$i?>" title="<?=$word?> 선택">
</td>
<td>&nbsp; <a href="<?=$_SERVER['PHP_SELF']?>?sfl=pp_word&amp;stx=<?=$word?>"><?=$word?></a></td>
<td><?=$row['pp_date']?></td>

View File

@ -36,7 +36,7 @@ include_once('./admin.head.php');
$colspan = 3;
?>
<form id="fsearch" name="fsearch" method="get">
<form name="fsearch" id="fsearch" method="get">
<fieldset>
<legend>인기검색어 검색</legend>
<span>
@ -44,15 +44,15 @@ $colspan = 3;
건수 <?=number_format($total_count)?>개
</span>
<label for="fr_date">기간설정</label>
<input type="text" id="fr_date" name="fr_date" class="frm_input" maxlength="10" value="<?=$fr_date?>" title="구간시작일"> 부터
<input type="text" id="to_date" name="to_date" class="frm_input" maxlength="10" value="<?=$to_date?>" title="구간종료일"> 까지
<input type="text" name="fr_date" value="<?=$fr_date?>" id="fr_date" title="구간시작일" class="frm_input" maxlength="10"> 부터
<input type="text" name="to_date" value="<?=$to_date?>" id="to_date" title="구간종료일" class="frm_input" maxlength="10"> 까지
<input type="submit" class="btn_submit" value="검색">
</fieldset>
</form>
<section class="cbox">
<h2>인기검색어 순위 및 내역</h2>
<form id="fpopularrank" name="fpopularrank" method="post">
<form name="fpopularrank" id="fpopularrank" method="post">
<input type="hidden" name="sst" value="<?=$sst?>">
<input type="hidden" name="sod" value="<?=$sod?>">
<input type="hidden" name="sfl" value="<?=$sfl?>">

View File

@ -51,8 +51,8 @@ if (isset($_POST['mail'])) {
<fieldset id="fsendmailtest">
<legend>테스트메일 발송</legend>
<label for="mail">받는 메일주소<strong class="sound_only">필수</strong></label>
<input type="text" id="mail" name="mail" class="required frm_input" required value="<?=$member['mb_email']?>" size="80">
<input type="submit" class="btn_submit" value="발송">
<input type="text" name="mail" value="<?=$member['mb_email']?>" id="mail" required class="required frm_input" size="80">
<input type="submit" value="발송" class="btn_submit">
</fieldset>
</form>
<p>

View File

@ -21,12 +21,12 @@ $qstr = "fr_date=".$fr_date."&amp;to_date=".$to_date;
<li><a href="./visit_year.php">년</a></li>
</ul>
<form id="fvisit" name="fvisit" method="get">
<form name="fvisit" id="fvisit" method="get">
<fieldset>
<legend>기간별 접속자집계 검색</legend>
<input type="text" id="fr_date" name="fr_date" class="frm_input" size="11" maxlength="10" value="<?=$fr_date?>"> 부터
<input type="text" id="to_date" name="to_date" class="frm_input" size="11" maxlength="10" value="<?=$to_date?>"> 까지
<input type="submit" class="btn_submit" value="검색">
<input type="text" name="fr_date" value="<?=$fr_date?>" id="fr_date" class="frm_input" size="11" maxlength="10"> 부터
<input type="text" name="to_date" value="<?=$to_date?>" id="to_date"class="frm_input" size="11" maxlength="10"> 까지
<input type="submit" value="검색" class="btn_submit">
</fieldset>
</form>