user_options_model is already part of the autoloader

This commit is contained in:
HB9HIL
2024-10-21 15:21:11 +00:00
parent 436f71de38
commit f91fffc6ca

View File

@@ -94,7 +94,6 @@ class QSO extends CI_Controller {
$this->form_validation->set_rules('locator', 'Locator', 'callback_check_locator');
// [eQSL default msg] GET user options (option_type='eqsl_default_qslmsg'; option_name='key_station_id'; option_key=station_id) //
$this->load->model('user_options_model');
$options_object = $this->user_options_model->get_options('eqsl_default_qslmsg',array('option_name'=>'key_station_id','option_key'=>$data['active_station_profile']))->result();
$data['qslmsg'] = (isset($options_object[0]->option_value))?$options_object[0]->option_value:'';