묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
댓글이 달린 댓글은 수정,삭제가 불가능하도록 하고싶습니다..
2013.02.03 23:34
구글링, 검색을 아무리 해보아도 댓글이 달린 글을 수정,삭제 불가능하게 하는 방법이나 관련 애드온을 구매하라는 답변만 있더군요 ...
댓글의 댓글이 달린 댓글의 수정,삭제를 금지시키려면 어떻게 해야할까요..?
염치없지만 질문드려봅니다..
사용하는 스킨은 sketchbook5 입니다..
xe - modules - comment - comment.controller.php 열고
(삭제불가)
line 554 쯤에
$oCommentModel = &getModel('comment');
이것 아래에
$commentCount = $oCommentModel->getChildCommentCount($comment_srl);
if($commentCount) return new Object(-1, 'msg_invalid_request');
이것 삽입
(수정불가)
line 471 쯤에
$oCommentModel = &getModel('comment');
이것 아래에
$commentCount = $oCommentModel->getChildCommentCount($obj->comment_srl);
if($commentCount) return new Object(-1, 'msg_invalid_request');
이것 삽입