[Quick lookup] Added xss_clean to input.
这个提交包含在:
父节点
681cd0af9b
当前提交
850b00447a
共有 1 个文件被更改,包括 7 次插入 和 7 次删除
|
|
@ -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');
|
||||||
|
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用