Merge pull request #2528 from int2001/fix_gridsearch

Fix Gridsearch / QSO-Details
这个提交包含在:
Peter Goodhall 2023-10-02 12:08:01 +01:00 提交者 GitHub
当前提交 bebe511f68
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

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