bbs/delete.php 질문드려요
// 원글 포인트 삭제
if (!delete_point($row[mb_id], $bo_table, $row[wr_id], '쓰기'))
insert_point($row[mb_id], $board[bo_write_point] * (-1), "$board[bo_subject] $row[wr_id] 글삭제");
라는 소스가있는데
이부분 회원이 삭제시는 게시글삭제시 포인트 삭제하는걸로 하고
admin이 게시글 삭제시 포인트 삭제 안되게하려면 어떻게 하나요?
도와주세요!
if (!delete_point($row[mb_id], $bo_table, $row[wr_id], '쓰기'))
insert_point($row[mb_id], $board[bo_write_point] * (-1), "$board[bo_subject] $row[wr_id] 글삭제");
라는 소스가있는데
이부분 회원이 삭제시는 게시글삭제시 포인트 삭제하는걸로 하고
admin이 게시글 삭제시 포인트 삭제 안되게하려면 어떻게 하나요?
도와주세요!
|
댓글을 작성하시려면 로그인이 필요합니다.
댓글 1개
if($row[mb_id]&&$is_admin != "supter") {
if (!delete_point($row[mb_id], $bo_table, $row[wr_id], '쓰기'))
insert_point($row[mb_id], $board[bo_write_point] * (-1), "$board[bo_subject] $row[wr_id] 글삭제");
}