포인트만을 위해 새글이나 댓글을 무작위로 올리는 분이 있는데...
1일 최대 1000포인트만 적용되고 나머지는 적용안되게 하면 좋겠습니다.
답변 2개
하루동안 획득 가능한 포인트 제한하기
lib/common.lib.php에
// 포인트 부여
function insert_point($mb_id, $point, $content='', $rel_table='', $rel_id='', $rel_action='', $expire=0)
함수에서
// 회원포인트
이것 전에
$tmp=sql_fetch("select sum( po_point) point1day from g5_point where mb_id='$mb_id' and po_datetime > curdate() ");
if( $tmp['point1day'] > 1000) return 0;
추가하면 되겠네요.
답변을 작성하려면 로그인이 필요합니다.