대댓글이 있는 경우 수정 불가능하게
/modules/comment/comment.controller.php
// create a comment model object 를 찾으세요 650줄 부근...
// create a comment model object
$oCommentModel = getModel('comment');
를
// create a comment model object
$oCommentModel = getModel('comment');
$logged_info = Context::get('logged_info');
if($logged_info->is_admin!='Y'){
$commentCount = $oCommentModel->getChildCommentCount($obj->comment_srl);
if($commentCount>개수) return new Object(-1, '댓글이 2개이상 달린 댓글은 수정이 불가합니다\n(필요시 관리자 호출)');
}
$logged_info = Context::get('logged_info');
if($logged_info->is_admin!='Y'){
}
ps. 요즘은 애드온 써도 됩니다. 참고요.
댓글 1