If no API key is supplied we should check for a valid session and

otherwise just redirect to login.
pull/2103/head^2
phl0 2023-05-02 08:04:21 +02:00
rodzic 51dd93c06a
commit a2f29c67a4
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 48EA1E640798CA9A
1 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -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 */
/* End of file Backup.php */