[Search] Fixed a bug when callsign did not contain slash

这个提交包含在:
Andreas 2022-10-28 11:28:03 +02:00
父节点 bfbb2e7938
当前提交 f9f3e74a58

查看文件

@ -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;
}