사용자: #253 에 따른 처리

This commit is contained in:
whitedot
2013-02-18 16:54:51 +09:00
parent 75ef3d70ad
commit 0ab0ec5429
2 changed files with 12 additions and 13 deletions

View File

@ -10,18 +10,17 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<script>document.getElementById("gr_id").value = "<?=$gr_id?>";</script>
<select name="sfl" title="검색조건">
<option value="wr_subject||wr_content">제목+내용</option>
<option value="wr_subject">제목</option>
<option value="wr_content">내용</option>
<option value="mb_id">회원아이디</option>
<option value="wr_name">이름</option>
<option value="wr_subject||wr_content"<?=get_selected($_GET['sfl'], "wr_subject||wr_content")?>>제목+내용</option>
<option value="wr_subject"<?=get_selected($_GET['sfl'], "wr_subject")?>>제목</option>
<option value="wr_content"<?=get_selected($_GET['sfl'], "wr_content")?>>내용</option>
<option value="mb_id"<?=get_selected($_GET['sfl'], "mb_id")?>>회원아이디</option>
<option value="wr_name"<?=get_selected($_GET['sfl'], "wr_name")?>>이름</option>
</select>
<input type="text" name="stx" class="fs_input" class="required" value="<?=$text_stx?>" maxlength="20" required title="검색어(필수)">
<input type="submit" class="fs_submit" value="검색">
<script>
document.fsearch.sfl.value = "<?=$sfl?>";
function fsearch_submit(f)
{
if (f.stx.value.length < 2) {