您必须使用“设置”方法来更新条目。文件名:modules/unfollow/controllers/unfollow.php行号:251
// save logs
$this->db->insert($this->tb_logs, $logs);
updateLogsCounter('data_logs',$item->type,'up', $this->tb_accounts, $item->account_id);
updateLogsCounter('data',$item->type.'_tmp','up', $this->tb_schedule, $item->id);
// set time for next schedule
$data_update['status'] = 5;
$data_update['result'] = 'Successfully';
$rand_time = rand(5,30);
$data_update['time_post'] = date('Y-m-d H:i:s', strtotime(NOW) + $item->delay + $rand_time);
}
$this->db->where("ids", $item->ids);
**LINE 251-->>>** $this->db->update($this->tb_schedule, $data_update);
}
}
}