기본 스킨 속성 수정 완료

This commit is contained in:
rollydream
2013-03-07 10:45:47 +09:00
parent 725d528d93
commit 3679722fc0
18 changed files with 87 additions and 87 deletions

View File

@ -2,7 +2,7 @@
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<form name="fsearch" method="get" onsubmit="return fsearch_submit(this);">
<form name="fsearch" onsubmit="return fsearch_submit(this);" method="get">
<input type="hidden" name="srows" value="<?=$srows?>">
<fieldset id="sch_result_detail">
<legend class="sound_only">상세검색</legend>
@ -17,7 +17,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<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="text" name="stx" value="<?=$text_stx?>" title="검색어(필수)" class="fs_input" required class="required" maxlength="20">
<input type="submit" class="fs_submit" value="검색">
<script>
@ -48,9 +48,9 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
return true;
}
</script>
<input type="radio" id="sop_or" name="sop" value="or" <?=($sop == "or") ? "checked" : "";?>>
<input type="radio" value="or" <?=($sop == "or") ? "checked" : "";?> id="sop_or" name="sop">
<label for="sop_or">OR</label>
<input type="radio" id="sop_and" name="sop" value="and" <?=($sop == "and") ? "checked" : "";?>>
<input type="radio" value="and" <?=($sop == "and") ? "checked" : "";?> id="sop_and" name="sop">
<label for="sop_and">AND</label>
</fieldset>
</form>