From 5b34a25d91e07d03f7285a552aa2384757f186e8 Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Tue, 23 Apr 2024 13:39:15 +0200 Subject: [PATCH] Moved function from logbook_model to debug_model --- application/controllers/Debug.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Debug.php b/application/controllers/Debug.php index c236b42d2..2e06ccf87 100644 --- a/application/controllers/Debug.php +++ b/application/controllers/Debug.php @@ -31,7 +31,7 @@ class Debug extends CI_Controller $data['qsos_with_no_station_id'] = $this->Logbook_model->check_for_station_id(); if ($data['qsos_with_no_station_id']) { - $data['calls_wo_sid'] = $this->Logbook_model->calls_without_station_id(); + $data['calls_wo_sid'] = $this->Debug_model->calls_without_station_id(); } $data['migration_version'] = $this->Debug_model->getMigrationVersion();