Fixed backup features

这个提交包含在:
Peter Goodhall 2020-08-10 23:26:02 +01:00
父节点 65ec84a982
当前提交 03b25d00d5

查看文件

@ -4,14 +4,13 @@ class Backup extends CI_Controller {
function __construct() function __construct()
{ {
parent::__construct(); parent::__construct();
$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'); }
} }
/* User Facing Links to Backup URLs */ /* User Facing Links to Backup URLs */
public function index() public function index()
{ {
$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'); }
$data['page_title'] = "Backup"; $data['page_title'] = "Backup";