Merge pull request #2952 from phl0/emptyConfirmations

Show all unconfirmed if no QSL method is selected
pull/2955/head
Peter Goodhall 2024-01-31 11:58:08 +00:00 zatwierdzone przez GitHub
commit 49c317b1bb
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -177,7 +177,10 @@ class Gridmap_model extends CI_Model {
$sql .= " or col_qrzcom_qso_download_status = 'Y'";
}
if ($sql != '') {
$sql='and (1=0 '.$sql.')';
$sql=' and (1=0 '.$sql.')';
}
if ($sql == '') {
$sql=' and 1=0';
}
return $sql;
}