使用版本:plus1.1
請問為什麼裝了積分系統後, 發表新主題時, 沒有加分, 但回覆新有加
以及怎樣可以刪除文章扣分. 謝謝大家幫忙
以及下面那句是裝在那里
代碼: 選擇全部
includes/functions_post.php
#
#-----[ FIND ]------------------------------------------
#
}
}
}
#
#-----[ AFTER, ADD ]------------------------------------------
#
if ($board_config['points_post'] && !$post_info['points_disabled'])
{
$points = abs(($mode == 'newtopic') ? $board_config['points_topic'] : $board_config['points_reply']);
if ($userdata['user_id'] != ANONYMOUS)
{
add_points($userdata['user_id'], $points);
}
}
#
#-----[ OPEN ]------------------------------------------