From bb6b903aff141696dda7f7bbb6f04a7f69004707 Mon Sep 17 00:00:00 2001 From: haneul Date: Sun, 7 Sep 2008 16:21:55 +0000 Subject: [PATCH] =?UTF-8?q?=EB=8C=93=EA=B8=80=EB=8B=AC=EB=95=8C=20document?= =?UTF-8?q?=5Fsrl=EC=9D=B4=20=EC=97=86=EB=8A=94=20=EA=B2=BD=EC=9A=B0?= =?UTF-8?q?=EB=8A=94=20=EB=B9=84=EA=B5=90=ED=95=98=EC=A7=80=20=EC=95=8A?= =?UTF-8?q?=EC=9D=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4482 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- modules/board/board.view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/board/board.view.php b/modules/board/board.view.php index 60839cc15..1c0f0e192 100644 --- a/modules/board/board.view.php +++ b/modules/board/board.view.php @@ -372,7 +372,7 @@ // 댓글이 없다면 오류 if(!$oSourceComment->isExists()) return $this->dispBoardMessage('msg_invalid_request'); - if($oSourceComment->get('document_srl') != Context::get('document_srl')) return $this->dispBoardMessage('meg_invalid_request'); + if(Context::get('document_srl') && $oSourceComment->get('document_srl') != Context::get('document_srl')) return $this->dispBoardMessage('meg_invalid_request'); // 대상 댓글을 생성 $oComment = $oCommentModel->getComment();