묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
댓글 신고하면 쪽지오게 하는 문제
2013.01.26 18:23
검색으로 아래 방법을 찾았는데요.
게시물 신고 하면 쪽지주소가 문제 없이 오는데
댓글 신고의 경우 게시물 주소는 못 불러오고 코멘트 주소만 불러오더라구요
그래서 문제되는 댓글이 쌓일경우 못찾고 헤메곤 하는데
혹시 댓글을 신고했을때도 그 문제되는 댓글의 문서를 불러올 수 있나요?
댓글 1
-
송동우
2013.01.26 19:37
xe - modules - comment - comment.controller.php 열고
line 894 쯤에
$this->setMessage('success_declared');
이것 바로 위에
$content = sprintf('Declared comment <a href="http://홈페이지/%d#comment">%d</a> %s', $oComment->get('document_srl'), $comment_srl, $oComment->get('content'));
$oCommunicationController = &getController('communication');
$oCommunicationController->sendMessage($member_srl, 4, 'Declared comment', $content);
이것 삽입 -
위위위
2013.01.26 21:17
감사합니다! 덕분에 해결했어요
xe - modules - document - document.controller.php 열고
line 1019 쯤에
$this->setMessage('success_declared');
이것 바로 위에
$content = sprintf('신고 게시물은 <a href="http://홈페이지/%d">%d</a>', $document_srl, $document_srl);
$oCommunicationController = &getController('communication');
$oCommunicationController->sendMessage($member_srl, 4, '메세지제목', $content);
이것 삽입