使用方法如下:
在/application/bbs/controller/
1、30行左右的位置(注意上下文)
//发帖防灌水检测
$res = hook('watercheck', array('type' => 1, 'tid' => @input('tid')), true, 'type');
if ($res && isset($res['code'])) {
if ($res['code'] == 0) {
$this->error($res['msg'], $_SERVER["HTTP_REFERER"], '', 10);
}
}
2、还是当前PHP文件的第154行位置
//修改帖子防灌水检测
$wcres = hook('watercheck', array('type' => 1, 'id' => input('id')), true, 'type');
if ($wcres && isset($wcres['code'])) {
if ($wcres['code'] == 0) {
$this->error($wcres['msg'], $_SERVER["HTTP_REFERER"], '', 10);
}
}
3、
4、