Fix empty value error for PHP 8.1

pull/1932/head
Andreas 2023-01-18 09:53:47 +01:00
rodzic fd9424f730
commit 9781b1947e
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -249,7 +249,7 @@ class Awards extends CI_Controller {
$band = str_replace('"', "", $this->input->post("Band"));
$mode = str_replace('"', "", $this->input->post("Mode"));
$type = $this->input->post('Type');
$this->input->post('QSL') == null ? '' : $this->input->post('QSL');
$qsl = $this->input->post('QSL') == null ? '' : $this->input->post('QSL');
$data['results'] = $this->logbook_model->qso_details($searchphrase, $band, $mode, $type, $qsl);