자기 글에 댓글을 달 경우에 포인트 안 오르게 하는 방법 좀 알려주세요.. 정보
자기 글에 댓글을 달 경우에 포인트 안 오르게 하는 방법 좀 알려주세요..본문
자신의 글에 댓글 달면 포인트가 안 오르게 하고 싶어요.ㅜㅜ
댓글 전체

bbs/write_comment_update.php
// 포인트 부여
insert_point($member[mb_id], $board[bo_comment_point], "$board[bo_subject] {$wr_id}-{$comment_id} 코멘트쓰기", $bo_table, $comment_id, '코멘트');
이 부분의 코드를
if($board[mb_id] != $member[mb_id])
{
// 포인트 부여
insert_point($member[mb_id], $board[bo_comment_point], "$board[bo_subject] {$wr_id}-{$comment_id} 코멘트쓰기", $bo_table, $comment_id, '코멘트');
}
요렇게 바꿔 주세요 :)
// 포인트 부여
insert_point($member[mb_id], $board[bo_comment_point], "$board[bo_subject] {$wr_id}-{$comment_id} 코멘트쓰기", $bo_table, $comment_id, '코멘트');
이 부분의 코드를
if($board[mb_id] != $member[mb_id])
{
// 포인트 부여
insert_point($member[mb_id], $board[bo_comment_point], "$board[bo_subject] {$wr_id}-{$comment_id} 코멘트쓰기", $bo_table, $comment_id, '코멘트');
}
요렇게 바꿔 주세요 :)
감사합니닷!