[ADIF] Removed IF as it was stopping any importing

这个提交包含在:
Peter Goodhall 2023-07-15 13:41:01 +01:00
父节点 36585d12f6
当前提交 e4c30adcae

查看文件

@ -2748,9 +2748,10 @@ class Logbook_model extends CI_Model {
$station_profile=$CI->Stations->profile_clean($station_id);
$station_profile_call=$station_profile->station_callsign;
if (($station_id != 0) && ($record['station_callsign'] != $station_profile_call)) { // Check if station_call from import matches profile ONLY when submitting via GUI.
/* if (($station_id != 0) && ($record['station_callsign'] != $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;
}
} */
$CI =& get_instance();
$CI->load->library('frequency');