This commit is contained in:
int2001
2025-10-01 17:46:41 +00:00
parent ed08ca0468
commit 70c9cbbfbc

View File

@@ -4120,7 +4120,8 @@ class Logbook_model extends CI_Model {
if (($record['band'] ?? '') == '') {
log_message("Error", "Trying to import QSO without Band for station_id " . $station_id . ". QSO Date/Time: " . $time_on . " Mode: " . ($record['mode'] ?? '') . " Call: " . ($record['call'] ?? ''));
$returner['error']=__("QSO on")." ".$time_on.": ".__("You tried to import a QSO without any given Band. This QSO wasn't imported. It's invalid");
$returner['error']=sprintf(__("QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't imported. It's invalid"),$time_on);
return($returner);
}