git-svn-id: http://xe-core.googlecode.com/svn/trunk@265 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-06 01:41:27 +00:00
parent 9bea7099e3
commit d67ed7f81f
2 changed files with 5 additions and 5 deletions

View file

@ -173,7 +173,7 @@
// comment 모듈의 controller 객체 생성
$oCommentController = &getController('comment');
$output = $oCommentController->deleteComment($comment_srl);
$output = $oCommentController->deleteComment($comment_srl, $this->grant->manager);
if(!$output->toBool()) return $output;
$this->add('mid', Context::get('mid'));
@ -201,7 +201,7 @@
// trackback module의 controller 객체 생성
$oTrackbackController = &getController('trackback');
$output = $oTrackbackController->deleteTrackback($trackback_srl);
$output = $oTrackbackController->deleteTrackback($trackback_srl, $this->grant->manager);
if(!$output->toBool()) return $output;
$this->add('mid', Context::get('mid'));
@ -259,7 +259,7 @@
// file class의 controller 객체 생성
$oFileController = &getController('file');
$output = $oFileController->deleteFile($file_srl);
$output = $oFileController->deleteFile($file_srl, $this->grant->manager);
// 첨부파일의 목록을 java script로 출력
$oFileController->printUploadedFileList($document_srl);