[이윰] 댓글에 이미지가 추가된 댓글을 수정할 경우 이미지가 삭제되는 버그 패치
페이지 정보
루루아빠
3,317
2015.08.07 19:39:02
짧은주소
-
https://yadolee.com/tip/273 주소복사
본문
각 스킨의 view.comment.skin 을 열고 다음과 같이 수정한다.
수정 전
수정 전
수정 전
수정 전
<input type="hidden" value="{=strstr(.wr_option,'secret')}" id="secret_comment_{.comment_id}">
<input type="hidden" value="{.anonymous_id}" id="anonymous_id_{.comment_id}">
<textarea id="save_comment_{.comment_id}" style="display:none">{.content1}</textarea>
수정 후
<input type="hidden" value="{=strstr(.wr_option,'secret')}" id="secret_comment_{.comment_id}">
<input type="hidden" value="{.anonymous_id}" id="anonymous_id_{.comment_id}">
<input type="hidden" value="{.imgname}" id="imgname_{.comment_id}">
<textarea id="save_comment_{.comment_id}" style="display:none">{.content1}</textarea>
수정 전
<div id="collapse-image-cm" class="panel-collapse collapse">
<div class="tag-box tag-box-e3 margin-top-10">
<label for="file" class="input input-file">
<div class="button"><input type="file" id="file" name="cmt_file[]" value="이미지선택" title="파일첨부 : 용량 {_upload_max_filesize} 이하만 업로드 가능" onchange="this.parentNode.nextSibling.value = this.value">Image</div><input type="text" readonly>
</label>
</div>
</div>
수정 후
<div id="collapse-image-cm" class="panel-collapse collapse">
<div class="tag-box tag-box-e3 margin-top-10">
<label for="file" class="input input-file">
<div class="button"><input type="file" id="file" name="cmt_file[]" value="이미지선택" title="파일첨부 : 용량 {_upload_max_filesize} 이하만 업로드 가능" onchange="this.parentNode.nextSibling.value = this.value">Image</div><input type="text" readonly>
</label>
<div id="del_cmtimg"></div>
</div>
</div>
수정 전
<!--{? _is_anonymous}-->
if (document.getElementById('anonymous_id_'+comment_id).value)
document.getElementById('anonymous').checked = true;
else
document.getElementById('anonymous').checked = false;
<!--{/}-->
}
document.getElementById('comment_id').value = comment_id;
document.getElementById('w').value = work;
수정 후
<!--{? _is_anonymous}-->
if (document.getElementById('anonymous_id_'+comment_id).value)
document.getElementById('anonymous').checked = true;
else
document.getElementById('anonymous').checked = false;
<!--{/}-->
var imgname = document.getElementById('imgname_' + comment_id).value;
if(imgname) {
var delchk_str = '<label class="checkbox"><input type="checkbox" name="del_cmtimg" value="1"><i></i><span class="font-size-12">파일삭제 ('+imgname+')</span></label>';
$("#del_cmtimg").html('');
$("#del_cmtimg").html(delchk_str);
}
}
document.getElementById('comment_id').value = comment_id;
document.getElementById('w').value = work;
추천인
레벨 101
경험치 1,523,074
Progress Bar 26.65%
- 가입일 : 2015-03-04 03:24:54
- 서명 : KNOW YOUR LIMITS
BUT NEVER STOP TRYING TO EXCEED THEM !!
- 자기소개 : 루루의 자랑
루루아빠랍니다~~
최신댓글이 없습니다.


댓글
첫 번째 댓글을 남겨 주세요