diff --git a/application/controllers/Update.php b/application/controllers/Update.php index b8edf00b..9bc4c2e7 100644 --- a/application/controllers/Update.php +++ b/application/controllers/Update.php @@ -225,25 +225,5 @@ class Update extends CI_Controller { } - public function lotw_users() { - // Load Database connectors - $this->load->model('lotw'); - - $this->lotw->empty_table("lotw_list"); - - $lines = file('http://www.hb9bza.net/lotw/lotw1.txt'); - - // Loop through our array, show HTML source as HTML source; and line numbers too. - foreach ($lines as $line_num => $line) { - echo "Line #{$line_num} : " . htmlspecialchars($line) . "
\n"; - - $data = array( - 'Callsign' => $line, - ); - - $this->db->insert('lotw_list', $data); - - } - } } ?>