From 70c9cbbfbc8fd0ddb40c0acc2d8dcbb35210ecbf Mon Sep 17 00:00:00 2001 From: int2001 Date: Wed, 1 Oct 2025 17:46:41 +0000 Subject: [PATCH] ... --- application/models/Logbook_model.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 5086c6ed6..ed3362626 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -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); }