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

This commit is contained in:
zero 2007-06-19 04:17:07 +00:00
parent bd689e83da
commit 08b801f1e7
8 changed files with 35 additions and 31 deletions

View file

@ -30,10 +30,10 @@
// 이미 존재하는 글인지 체크
$document_srl = Context::get('document_srl');
$document = $oDocumentModel->getDocument($document_srl);
$oDocument = $oDocumentModel->getDocument($document_srl);
// 이미 존재하는 글이라면 return
if($document->document_srl == $document_srl) return;
if($oDocument->isExists()) return;
break;
// 댓글 작성시 신규 등록이 아니면 패스~
case 'procInsertComment' :