Add case-insensitive Check instead of case-sensitive on Station-Call
这个提交包含在:
父节点
52e1727f64
当前提交
d40970ff77
共有 1 个文件被更改,包括 1 次插入 和 1 次删除
|
|
@ -2887,7 +2887,7 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
|
|||
$record['station_callsign']=$station_profile_call;
|
||||
}
|
||||
|
||||
if ((!$skipStationCheck) && ($station_id != 0) && ($record['station_callsign'] != $station_profile_call)) { // Check if station_call from import matches profile ONLY when submitting via GUI.
|
||||
if ((!$skipStationCheck) && ($station_id != 0) && (strtoupper($record['station_callsign']) != strtoupper($station_profile_call))) { // Check if station_call from import matches profile ONLY when submitting via GUI.
|
||||
return "Wrong station_callsign ".$record['station_callsign']." while importing QSO with ".$record['call']." for ".$station_profile_call." : SKIPPED";
|
||||
}
|
||||
|
||||
|
|
|
|||
正在加载…
在新工单中引用