[eQSL] Commented Code
这个提交包含在:
父节点
9ce97d1236
当前提交
45ceb90609
共有 1 个文件被更改,包括 13 次插入 和 10 次删除
|
|
@ -94,12 +94,13 @@ class eqsl extends CI_Controller {
|
|||
}
|
||||
|
||||
public function import() {
|
||||
$this->load->model('stations');
|
||||
|
||||
if($this->stations->are_eqsl_nicks_defined() == 0) {
|
||||
show_error('eQSL Nicknames in Station Profiles arent defined');
|
||||
exit;
|
||||
}
|
||||
// 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;
|
||||
}
|
||||
|
||||
ini_set('memory_limit', '-1');
|
||||
set_time_limit(0);
|
||||
|
|
@ -256,10 +257,12 @@ class eqsl extends CI_Controller {
|
|||
} // end function
|
||||
|
||||
public function export() {
|
||||
if($this->stations->are_eqsl_nicks_defined() == 0) {
|
||||
show_error('eQSL Nicknames in Station Profiles arent defined');
|
||||
exit;
|
||||
}
|
||||
// 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;
|
||||
}
|
||||
|
||||
ini_set('memory_limit', '-1');
|
||||
set_time_limit(0);
|
||||
|
|
|
|||
正在加载…
在新工单中引用