Merge pull request #2572 from phl0/fuzzDupeCheck

We should not take seconds into account when checking dupes
这个提交包含在:
Peter Goodhall 2023-10-16 11:45:21 +01:00 提交者 GitHub
当前提交 e147a5ff8f
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -3229,7 +3229,7 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
if (isset($record['call'])){
$this->db->where('COL_CALL', $record['call']);
}
$this->db->where('COL_TIME_ON', $time_on);
$this->db->where("DATE_FORMAT(COL_TIME_ON, '%Y-%m-%d %H:%i') = DATE_FORMAT(\"".$time_on."\", '%Y-%m-%d %H:%i')");
$this->db->where('COL_BAND', $band);
$this->db->where('COL_MODE', $input_mode);
$this->db->where('station_id', $station_id);