From f9f3e74a5846f695910ad71aa0879c069a24be99 Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Fri, 28 Oct 2022 11:28:03 +0200 Subject: [PATCH] [Search] Fixed a bug when callsign did not contain slash --- application/controllers/Logbook.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/controllers/Logbook.php b/application/controllers/Logbook.php index f48f2788..8a8b7372 100755 --- a/application/controllers/Logbook.php +++ b/application/controllers/Logbook.php @@ -647,6 +647,8 @@ class Logbook extends CI_Controller { if(!$this->user_model->authorize($this->config->item('auth_mode'))) { return; } + $fixedid = $id; + if ($id2 != "") { $fixedid = $id . '/' . $id2; }