From 2cf15bcd74fff17b2879c70de4e22fc8ba87000b Mon Sep 17 00:00:00 2001 From: Paolo Date: Thu, 25 Apr 2019 14:53:35 +0200 Subject: [PATCH] REST_Controller now loads helper hlp_session --- application/core/REST_Controller.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/application/core/REST_Controller.php b/application/core/REST_Controller.php index 0bcfe8276..38eda47f7 100644 --- a/application/core/REST_Controller.php +++ b/application/core/REST_Controller.php @@ -363,6 +363,9 @@ abstract class REST_Controller extends CI_Controller { // Loads helper message to manage returning messages $this->load->helper('hlp_return_object'); + // Loads helper session to manage the php session + $this->load->helper('hlp_session'); + // Loads helper with generic utility function $this->load->helper('hlp_common'); }