Previous fix won't work as value would be overwritten

这个提交包含在:
phl0 2023-01-18 09:31:38 +01:00
父节点 eb3b2f195c
当前提交 fd9424f730
找不到此签名对应的密钥
GPG 密钥 ID: 48EA1E640798CA9A

查看文件

@ -245,12 +245,11 @@ class Awards extends CI_Controller {
public function qso_details_ajax(){
$this->load->model('logbook_model');
$qsl = '';
$searchphrase = str_replace('"', "", $this->input->post("Searchphrase"));
$band = str_replace('"', "", $this->input->post("Band"));
$mode = str_replace('"', "", $this->input->post("Mode"));
$type = $this->input->post('Type');
$qsl = $this->input->post('QSL');
$this->input->post('QSL') == null ? '' : $this->input->post('QSL');
$data['results'] = $this->logbook_model->qso_details($searchphrase, $band, $mode, $type, $qsl);