diff --git a/application/controllers/Backup.php b/application/controllers/Backup.php index e73306f7..ba6f928a 100644 --- a/application/controllers/Backup.php +++ b/application/controllers/Backup.php @@ -21,6 +21,11 @@ class Backup extends CI_Controller { /* Gets all QSOs and Dumps them to logbook.adi */ public function adif($key = null){ + if ($key == null) { + $this->load->model('user_model'); + if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + } + $this->load->helper('file'); // Set memory limit to unlimited to allow heavy usage ini_set('memory_limit', '-1'); @@ -74,4 +79,4 @@ class Backup extends CI_Controller { } } -/* End of file Backup.php */ \ No newline at end of file +/* End of file Backup.php */