묻고답하기
포럼 모듈 문의
2013.03.27 00:14
포럼에서 인용글 작성시
관리자만 인용된 원본글에 테두리 박스가 쳐지고 일반 유저가 인용글 작성시 박스가 없어 집니다.
포럼 모듈의 forum.view.php 를 보면 아래와 같은 관련 문구가 있는데..관리자만 동작하게하는 제한은 없어 보입니다.
도움 주실 분 없으실까요 ? (버그 리포트는 한상태입니다만....아시겠지만 포럼모듈을 봐주는 속도가 세월아 내월아 입니다...T.T)
// set quote styling for comment reply
$oComment = $oCommentModel->getComment();
$oComment->add('parent_srl',0);
if($oSourceComment->isExists()){
$oComment->add('document_srl', $oSourceComment->get('document_srl'));
$quote = Context::get('quote');
$lang->cmd_quote=Context::getLang('cmd_quote');
if($quote=='Y')
$content ="<div class=\"quote\"><div class=\"quoteTitle\">".$lang->cmd_quote."</div>".$oSourceComment->get('content')."</div></br>";
}
else if($oSourceDocument->isExists()) {
$oComment->add('document_srl', $oSourceDocument->get('document_srl'));
$quote = Context::get('quote');
$lang->cmd_quote=Context::getLang('cmd_quote');
if($quote=='Y')
$content ="<div class=\"quote\"><div class=\"quoteTitle\">".$lang->cmd_quote."</div>".$oSourceDocument->get('content')."</div></br>";
}