From 9c4b90eee783ac44044c53254906025e6b94f9b4 Mon Sep 17 00:00:00 2001 From: zero Date: Sat, 28 Jul 2007 12:57:26 +0000 Subject: [PATCH] =?UTF-8?q?blog=C3=AB=C2=AA=C2=A8=C3=AB=C2=93=C2=88=C3=AC?= =?UTF-8?q?=C2=97=C2=90=C3=AC=C2=84=C2=9C=20dispBoard*=C3=AB=C2=A5=C2=BC?= =?UTF-8?q?=20=C3=AD=C2=98=C2=B8=C3=AC=C2=B6=C2=9C=C3=AD=C2=95=C2=98=C3=AB?= =?UTF-8?q?=C2=8A=C2=94=20=C3=AC=C2=9E=C2=98=C3=AB=C2=AA=C2=BB=C3=AB=C2=90?= =?UTF-8?q?=C2=9C=20=C3=AC=C2=BD=C2=94=C3=AB=C2=93=C2=9C=20=C3=AC=C2=88?= =?UTF-8?q?=C2=98=C3=AC=C2=A0=C2=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/trunk@2070 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/blog/blog.view.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/blog/blog.view.php b/modules/blog/blog.view.php index 1e7cf38dd..2e1724847 100644 --- a/modules/blog/blog.view.php +++ b/modules/blog/blog.view.php @@ -206,7 +206,7 @@ **/ function dispBlogDelete() { // 권한 체크 - if(!$this->grant->write_document) return $this->dispBoardMessage('msg_not_permitted'); + if(!$this->grant->write_document) return $this->dispBlogMessage('msg_not_permitted'); // 삭제할 문서번호를 가져온다 $document_srl = Context::get('document_srl'); @@ -218,7 +218,7 @@ } // 삭제하려는 글이 없으면 에러 - if(!$oDocument->isExists()) return $this->dispBoardContent(); + if(!$oDocument->isExists()) return $this->dispBlogContent(); // 권한이 없는 경우 비밀번호 입력화면으로 if(!$oDocument->isGranted()) return $this->setTemplateFile('input_password_form');