Remove extra CI loads in Clublog (and debug log messages)

This commit is contained in:
phl0
2024-06-03 15:28:23 +02:00
parent 8ed856bf3c
commit 79d51be9f4
2 changed files with 2 additions and 3 deletions

View File

@@ -28,6 +28,7 @@ class Clublog_model extends CI_Model
error_reporting(E_ALL);
$this->load->helper('file');
$this->load->library('AdifHelper');
$station_profiles = $this->all_with_count($clean_userid);

View File

@@ -5,9 +5,7 @@ Wavelog ADIF export
<EOH>
<?php
$CI =& get_instance();
$CI->load->library('AdifHelper');
foreach ($qsos->result() as $qso) {
echo $CI->adifhelper->getAdifLine($qso);
echo $this->adifhelper->getAdifLine($qso);
}