Helps to save the file before committing, but it was just comments anyway...

这个提交包含在:
Corby Krick 2013-02-21 20:19:58 -06:00
父节点 ab56594bdb
当前提交 6cd66a6a4a

查看文件

@ -31,7 +31,16 @@ class Lotw extends CI_Controller {
}
else
{
if ($this->input->post('lotwimport') == 'upload')
if ($this->input->post('lotwimport') == 'fetch')
{
// Probably need something like
// $this->load->library('arrl_lotw');
// $this->arrl_lotw->fetch_report(someargs)
// Then dump that file into the uploads directory
// Then continue on with the below code using the file that
// got fetched instead of the uploaded one.
}
else
{
$data = array('upload_data' => $this->upload->data());