Merge pull request #1215 from izuzero/develop.13

휴지통에 들어 있는 댓글을 삭제할 수 없는 문제 해결
This commit is contained in:
bnu 2015-03-23 19:21:46 +09:00
commit 1ec8e81be3

View file

@ -495,7 +495,9 @@ class commentAdminController extends comment
//already comment deleted, therefore only comment log delete
$oCommentController = getController('comment');
$output = $oCommentController->deleteCommentLog($oComment->get('comment_srl'));
$args = new stdClass();
$args->comment_srl = $oComment->get('comment_srl');
$output = $oCommentController->deleteCommentLog($args);
return $output;
}