휴지통에 들어 있는 댓글을 삭제할 수 없는 문제 해결

This commit is contained in:
Eunsoo Lee 2015-01-27 01:07:36 +09:00
parent 250a957bf3
commit 57a4eece3a

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;
}