[eQSL] Commented Code

这个提交包含在:
Peter Goodhall 2020-09-15 22:50:59 +01:00
父节点 9ce97d1236
当前提交 45ceb90609

查看文件

@ -94,8 +94,9 @@ class eqsl extends CI_Controller {
}
public function import() {
$this->load->model('stations');
// Check if eQSL Nicknames have been defined
$this->load->model('stations');
if($this->stations->are_eqsl_nicks_defined() == 0) {
show_error('eQSL Nicknames in Station Profiles arent defined');
exit;
@ -256,6 +257,8 @@ class eqsl extends CI_Controller {
} // end function
public function export() {
// Check if eQSL Nicknames have been defined
$this->load->model('stations');
if($this->stations->are_eqsl_nicks_defined() == 0) {
show_error('eQSL Nicknames in Station Profiles arent defined');
exit;