fix blog module using dispBoardMessage to dispBlogMessage

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3158 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-12-05 07:17:45 +00:00
parent a70192c8e7
commit ed11224476

View file

@ -266,7 +266,7 @@
$oSourceComment = $oCommentModel->getComment($parent_srl, $this->grant->manager);
// 댓글이 없다면 오류
if(!$oSourceComment->isExists()) return $this->dispBoardMessage('msg_invalid_request');
if(!$oSourceComment->isExists()) return $this->dispBlogMessage('msg_invalid_request');
// 대상 댓글을 생성
$oComment = $oCommentModel->getComment();
@ -302,7 +302,7 @@
$oComment = $oCommentModel->getComment($comment_srl, $this->grant->manager);
// 댓글이 없다면 오류
if(!$oComment->isExists()) return $this->dispBoardMessage('msg_invalid_request');
if(!$oComment->isExists()) return $this->dispBlogMessage('msg_invalid_request');
// 글을 수정하려고 할 경우 권한이 없는 경우 비밀번호 입력화면으로
if(!$oComment->isGranted()) return $this->setTemplateFile('input_password_form');