Merge pull request #2692 from phl0/skipUnneededUpdateOfDistances
We do not need to (re-)update distances if grids are the same
这个提交包含在:
当前提交
976cefd1e0
共有 1 个文件被更改,包括 1 次插入 和 0 次删除
|
|
@ -4083,6 +4083,7 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
|
|||
$this->db->where("((COL_DISTANCE is NULL) or (COL_DISTANCE = 0))");
|
||||
$this->db->where("COL_GRIDSQUARE is NOT NULL");
|
||||
$this->db->where("COL_GRIDSQUARE != ''");
|
||||
$this->db->where("COL_GRIDSQUARE != station_gridsquare");
|
||||
$this->db->trans_start();
|
||||
$query = $this->db->get($this->config->item('table_name'));
|
||||
|
||||
|
|
|
|||
正在加载…
在新工单中引用