관리자 설문조사폼에서 required 추가되는 문제 수정

This commit is contained in:
chicpro
2013-03-13 16:10:32 +09:00
parent e37cafba6f
commit 1ea2fdf5db

View File

@ -51,7 +51,7 @@ include_once('./admin.head.php');
<tr>
<th scope="row"><label for="po_poll<?=$i?>">항목 <?=$i?><?=$sound_only?></label></th>
<td>
<input type="text" name="po_poll<?=$i?>" value="<?=$po_poll?>" id="po_poll<?=$i?>" required class="frm_input <?=$required?>" maxlength="125">
<input type="text" name="po_poll<?=$i?>" value="<?=$po_poll?>" id="po_poll<?=$i?>" <?=$required?> class="frm_input <?=$required?>" maxlength="125">
<label for="po_cnt<?=$i?>">항목 <?=$i?> 투표수</label>
<input type="text" name="po_cnt<?=$i?>" value="<?=$po['po_cnt'.$i]?>" id="po_cnt<?=$i?>" class="frm_input" size="3">
</td>