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

This commit is contained in:
whitedot
2013-01-17 13:26:53 +09:00

View File

@ -114,13 +114,16 @@ echo $option_hidden;
</tr>
<? } ?>
<? for ($i=1; $is_file && $i<=$file_count; $i++) { ?>
<? for ($i=0; $is_file && $i<$file_count; $i++) { ?>
<tr>
<th scope="row">파일 #<?=$i?></th>
<th scope="row">파일 #<?=$i+1?></th>
<td>
<input type="file" name="bf_file[]" class="frm_input" title="파일 용량 <?=$upload_max_filesize?> 이하만 업로드 가능">
<? if($w == 'u' && $file[$i]['file']) { ?>
<input type="checkbox" name="bf_file_del[<? echo $i; ?>]" value="1"> <? echo $file[$i]['source'].'('.$file[$i]['size'].')'; ?> 파일 삭제
<? } ?>
<? if ($is_file_content) { ?>
<input type="text" name="bf_content[]" class="frm_input" size="50" title="파일 설명을 입력해주세요.">
<input type="text" name="bf_content[]" class="frm_input" value="<? echo $file[$i]['bf_content']; ?>" size="50" title="파일 설명을 입력해주세요.">
<?}?>
</td>
</tr>