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