From bfaf4e774b2bc60243ab625498fc2273de59d4b1 Mon Sep 17 00:00:00 2001 From: Paolo Date: Tue, 10 Jul 2018 11:37:04 +0200 Subject: [PATCH] APIv1_Controller now loads helper fhc too --- application/core/APIv1_Controller.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/application/core/APIv1_Controller.php b/application/core/APIv1_Controller.php index e3ffcb533..67841d7fa 100644 --- a/application/core/APIv1_Controller.php +++ b/application/core/APIv1_Controller.php @@ -14,6 +14,9 @@ class APIv1_Controller extends REST_Controller // Loads helper message to manage returning messages $this->load->helper('message'); + // Loads helper with generic utility function + $this->load->helper('fhc'); + // Loads permission lib $this->load->library('PermissionLib');