다수의 첨부파일을 추가하기 위해 editor.php 파일을 아래와 같이 수정하였습니다.
<div class="kboard-attr-row">
<label class="attr-name">첨부파일1</label>
<div class="attr-value">
<?php if($content->attach->file1[0]):?><?=$content->attach->file1[1]?> - <a href="<?=$url->getDeleteURLWithAttach($content->uid, 'file1');?>" onclick="return confirm('삭제 하시겠습니까?');">삭제</a><?php endif?>
<input type="file" name="kboard_attach_file1">
</div>
</div>
<div class="kboard-attr-row">
<label class="attr-name">첨부파일2</label>
<div class="attr-value">
<?php if($content->attach->file1[0]):?><?=$content->attach->file1[1]?> - <a href="<?=$url->getDeleteURLWithAttach($content->uid, 'file1');?>" onclick="return confirm('삭제 하시겠습니까?');">삭제</a><?php endif?>
<input type="file" name="kboard_attach_file2">
</div>
</div>
<div class="kboard-attr-row">
<label class="attr-name">첨부파일3</label>
<div class="attr-value">
<?php if($content->attach->file1[0]):?><?=$content->attach->file1[1]?> - <a href="<?=$url->getDeleteURLWithAttach($content->uid, 'file1');?>" onclick="return confirm('삭제 하시겠습니까?');">삭제</a><?php endif?>
<input type="file" name="kboard_attach_file3">
</div>
</div>
글 작성 및 첨부파일 추가, 다운로드도 잘 되는데 글 수정을 했을때
첨부파일 2/3의 이름이 모두 첨부파일1로 나타납니다.
어디를 수정해야 하나요???
아... 이건 제가 잘못한거네요..
첨부파일을 모두 $content->attach->file1[0]로 해서 발생한 문제군요 ㅎㅎㅎ
$content->attach->file2, $content->attach->file3 으로 수정하니 해결되었네요..
고맙습니다.