From fc2f158c099f083019081fdccfa027c3ef12cc59 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Sun, 22 Sep 2024 18:09:38 +0200 Subject: [PATCH 1/4] fancybox for callbook image --- assets/js/sections/qso.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/sections/qso.js b/assets/js/sections/qso.js index ace14224a..dac413bbd 100644 --- a/assets/js/sections/qso.js +++ b/assets/js/sections/qso.js @@ -981,7 +981,7 @@ $( document ).ready(function() { /* Find link to qrz.com picture */ if (result.image != "n/a") { - $('#callsign-image-content').html(''); + $('#callsign-image-content').html(''); $('#callsign-image').attr('style', 'display: true;'); } From 86101482939287d487b985101108318933153c0a Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Sun, 22 Sep 2024 18:54:03 +0200 Subject: [PATCH 2/4] fixed qso tabindex --- application/views/qso/index.php | 48 ++++++++++++++++----------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/application/views/qso/index.php b/application/views/qso/index.php index 3261d104b..c7e57ddbc 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -63,13 +63,13 @@
- required pattern="[0-3][0-9]-[0-1][0-9]-[0-9]{4}"> + required pattern="[0-3][0-9]-[0-1][0-9]-[0-9]{4}">
- required pattern="[0-2][0-9]:[0-5][0-9]"> + required pattern="[0-2][0-9]:[0-5][0-9]"> @@ -81,7 +81,7 @@
- required pattern="[0-2][0-9]:[0-5][0-9]"> + required pattern="[0-2][0-9]:[0-5][0-9]"> @@ -99,13 +99,13 @@
- required pattern="[0-3][0-9]-[0-1][0-9]-[0-9]{4}"> + required pattern="[0-3][0-9]-[0-1][0-9]-[0-9]{4}">
- required pattern="[0-2][0-9]:[0-5][0-9]"> + required pattern="[0-2][0-9]:[0-5][0-9]"> @@ -124,7 +124,7 @@
 " class="fas fa-search">
- +
@@ -135,7 +135,7 @@
- result() as $mode){ if ($mode->submode == null) { @@ -151,7 +151,7 @@
- $bandgroup) { echo ''; foreach($bandgroup as $band) { @@ -168,7 +168,7 @@
- +
@@ -176,19 +176,19 @@
- +
- +
- +
@@ -196,7 +196,7 @@
-
- +
@@ -224,7 +224,7 @@
- +
@@ -236,7 +236,7 @@
- +
@@ -248,14 +248,14 @@
- +
- +
@@ -264,7 +264,7 @@
- +
@@ -272,14 +272,14 @@
- +
- +
@@ -289,7 +289,7 @@
- +
@@ -617,13 +617,13 @@
- +
- +
From 18d6a793aae304b63da6e9e628c0a1af24e66b82 Mon Sep 17 00:00:00 2001 From: karuru Date: Mon, 23 Sep 2024 13:58:29 +0800 Subject: [PATCH 3/4] fix: vucc grids in certain query --- application/models/Logbook_model.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 8845b1e0b..eb181860d 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -487,8 +487,8 @@ class Logbook_model extends CI_Model { } } else { $this->db->group_start(); - $this->db->like("COL_GRIDSQUARE", $searchphrase); - $this->db->or_like("COL_VUCC_GRIDS", $searchphrase); + $this->db->like("COL_GRIDSQUARE", $searchphrase, 'after'); + $this->db->or_like("COL_VUCC_GRIDS", $searchphrase, 'after'); $this->db->group_end(); if ($band == 'SAT' && $type == 'VUCC') { if ($sat != 'All' && $sat != null) { From 29c9debe7137bca6137f7cb22bfba2ed9b04c3f6 Mon Sep 17 00:00:00 2001 From: int2001 Date: Mon, 23 Sep 2024 10:53:37 +0000 Subject: [PATCH 4/4] There was a typo at the Clublog-QSO-Upload-Status --- application/models/Logbookadvanced_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Logbookadvanced_model.php b/application/models/Logbookadvanced_model.php index 0d0fce919..1f0f8a4be 100644 --- a/application/models/Logbookadvanced_model.php +++ b/application/models/Logbookadvanced_model.php @@ -181,7 +181,7 @@ class Logbookadvanced_model extends CI_Model { $condition = "COL_CLUBLOG_QSO_UPLOAD_STATUS = ?"; if ($searchCriteria['clublogSent'] == 'N') { $condition = '('.$condition; - $condition .= " OR COL_CLUBLOG_QSL_UPLOAD_STATUS IS NULL OR COL_CLUBLOG_QSO_UPLOAD_STATUS = '')"; + $condition .= " OR COL_CLUBLOG_QSO_UPLOAD_STATUS IS NULL OR COL_CLUBLOG_QSO_UPLOAD_STATUS = '')"; } $conditions[] = $condition; $binding[] = $searchCriteria['clublogSent'];