#17181052 게시글 복사시에는 댓글 목록을 구할때 제한 없이 하여 댓글도 모두 잘 복사되도록 변경

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5119 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-12-18 06:07:08 +00:00
parent c39296309a
commit d310b43e51
2 changed files with 10 additions and 5 deletions

View file

@ -184,7 +184,7 @@
/**
* @brief document_srl에 해당하는 문서의 댓글 목록을 가져옴
**/
function getCommentList($document_srl, $page = 0, $is_admin = false) {
function getCommentList($document_srl, $page = 0, $is_admin = false, $count = 0) {
// 해당 문서의 모듈에 해당하는 댓글 수를 구함
$oDocumentModel = &getModel('document');
$oDocument = $oDocumentModel->getDocument($document_srl);
@ -197,9 +197,14 @@
// 정해진 댓글수에 따른 댓글 목록 구함
$module_srl = $oDocument->get('module_srl');
$comment_config = $this->getCommentConfig($module_srl);
$comment_count = $comment_config->comment_count;
if(!$comment_count) $comment_count = 50;
if(!$count) {
$comment_config = $this->getCommentConfig($module_srl);
$comment_count = $comment_config->comment_count;
if(!$comment_count) $comment_count = 50;
} else {
$comment_count = $count;
}
// 페이지가 없으면 제일 뒤 페이지를 구함
if(!$page) $page = (int)( ($oDocument->getCommentCount()-1) / $comment_count) + 1;