- Added helper language_helper to retrive the language of the logged user

- FHC_Controller now loads also the language_helper
- Added missing comments to Auth_Controller
- Fixed comments of session_helper
This commit is contained in:
Paolo
2018-07-05 12:10:00 +02:00
parent 56524dcef2
commit 83f262f170
4 changed files with 49 additions and 7 deletions
+3
View File
@@ -28,6 +28,9 @@ class FHC_Controller extends CI_Controller
// Loads helper session to manage the php session
$this->load->helper('session');
// Loads language helper
$this->load->helper('language');
}
//------------------------------------------------------------------------------------------------------------------