Merge pull request #2528 from int2001/fix_gridsearch

Fix Gridsearch / QSO-Details
pull/2531/head
Peter Goodhall 2023-10-02 12:08:01 +01:00 zatwierdzone przez GitHub
commit bebe511f68
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -352,7 +352,7 @@ class Logbook_model extends CI_Model {
if ($searchmode == 'activated') {
$this->db->where("station_gridsquare like '%" . $searchphrase . "%'");
} else {
$this->db->where("(COL_GRIDSQUARE like '%" . $searchphrase . "%' OR COL_VUCC_GRIDS like'%" . $searchphrase ."%')");
$this->db->where("(COL_GRIDSQUARE like '" . $searchphrase . "%' OR COL_VUCC_GRIDS like '%" . $searchphrase ."%')");
}
break;
case 'CQZone':