diff --git a/application/models/Dcl_model.php b/application/models/Dcl_model.php index 5e4ee6df1..449d5c2f1 100644 --- a/application/models/Dcl_model.php +++ b/application/models/Dcl_model.php @@ -4,10 +4,10 @@ class Dcl_model extends CI_Model { /* |-------------------------------------------------------------------------- - | Function: lotw_certs + | Function: dcl_keys |-------------------------------------------------------------------------- | - | Returns all lotw_certs for a selected user via the $user_id parameter + | Returns all dcl_keys for a selected user via the $user_id parameter | */ function dcl_keys($user_id) { @@ -15,6 +15,14 @@ class Dcl_model extends CI_Model { return $this->user_options_model->get_options('dcl', array('option_name'=>'dcl_key'), $user_id)->result(); } + /* + |-------------------------------------------------------------------------- + | Function: find_key + |-------------------------------------------------------------------------- + | + | Returns all dcl_keys for a selected user via the $user_id parameter which match also to the $callsign + | + */ function find_key($callsign, $user_id) { $this->load->model('user_options_model'); diff --git a/application/views/dcl_views/index.php b/application/views/dcl_views/index.php index 61ed2f396..89a5b5061 100644 --- a/application/views/dcl_views/index.php +++ b/application/views/dcl_views/index.php @@ -1,6 +1,5 @@