From ae4ff80974413339e00512c3b63a30cf5dee64e8 Mon Sep 17 00:00:00 2001 From: FrancescoUK Date: Tue, 7 Feb 2017 20:49:19 +0000 Subject: [PATCH] Fix encryption key generation issue (#1110) --- application/controllers/Config.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/controllers/Config.php b/application/controllers/Config.php index 3a79278ec..732d57246 100644 --- a/application/controllers/Config.php +++ b/application/controllers/Config.php @@ -203,6 +203,8 @@ class Config extends Secure_Controller $data['licenses'] = $this->_licenses(); $data['themes'] = $this->_themes(); + $this->_check_encryption(); + $this->load->view("configs/manage", $data); }