[QSLPrint] Fixed marking of QSLs as sent when station location was all.

pull/1145/head
Andreas 2021-09-04 09:42:46 +02:00
rodzic 42206c55fe
commit c750d04848
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -115,8 +115,8 @@ class QSLPrint extends CI_Controller {
function qsl_printed() {
if ($this->uri->segment(3) == 'All') {
$station_id = NULL;
if ($this->uri->segment(3) == 'all') {
$station_id = 'All';
} else {
$station_id = $this->security->xss_clean($this->uri->segment(3));
}

Wyświetl plik

@ -22,7 +22,7 @@ class Qslprint_model extends CI_Model {
if ($station_id2 == NULL) {
$this->db->where("station_id", $station_id);
} else {
} else if ($station_id2 != 'All') {
$this->db->where("station_id", $station_id2);
}