From 06630e0d2dbd495f2cc8913a8124609fce5fafcc Mon Sep 17 00:00:00 2001 From: oxteam Date: Fri, 29 Jun 2018 14:31:09 +0200 Subject: [PATCH] Cosmetic changes (removing blanks) --- src/application/controllers/Backend.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/application/controllers/Backend.php b/src/application/controllers/Backend.php index 62aa423c..51c13750 100755 --- a/src/application/controllers/Backend.php +++ b/src/application/controllers/Backend.php @@ -324,13 +324,14 @@ class Backend extends CI_Controller { { throw new Exception('You do not have the required privileges for this task!'); } + $this->load->library('migration'); - + if ( ! $this->migration->current()) { throw new Exception($this->migration->error_string()); } - + $view = ['success' => TRUE]; } catch (Exception $exc)