[Quick lookup] Added xss_clean to input.

这个提交包含在:
Andreas 2021-03-14 11:50:21 +01:00
父节点 681cd0af9b
当前提交 850b00447a

查看文件

@ -31,13 +31,13 @@ class Lookup extends CI_Controller {
$CI->load->model('Stations'); $CI->load->model('Stations');
$station_id = $CI->Stations->find_active(); $station_id = $CI->Stations->find_active();
$type = $this->input->post('type'); $type = xss_clean($this->input->post('type'));
$dxcc = $this->input->post('dxcc'); $dxcc = xss_clean($this->input->post('dxcc'));
$was = $this->input->post('was'); $was = xss_clean($this->input->post('was'));
$cqz = $this->input->post('cqz'); $cqz = xss_clean($this->input->post('cqz'));
$sota = $this->input->post('sota'); $sota = xss_clean($this->input->post('sota'));
$grid = $this->input->post('grid'); $grid = xss_clean($this->input->post('grid'));
$iota = $this->input->post('iota'); $iota = xss_clean($this->input->post('iota'));
$this->load->model('lookup_model'); $this->load->model('lookup_model');