From a456c0838d19ae223ba246b06fb4de395d6e981a Mon Sep 17 00:00:00 2001 From: Paolo Date: Wed, 20 Sep 2017 10:55:20 +0200 Subject: [PATCH] - Added property UDFs to UDFLib - UDFLib constructor initialize UDFs property as an empty array --- application/libraries/UDFLib.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/application/libraries/UDFLib.php b/application/libraries/UDFLib.php index ad0e14c03..f3a2ae735 100644 --- a/application/libraries/UDFLib.php +++ b/application/libraries/UDFLib.php @@ -46,6 +46,7 @@ class UDFLib const PHRASES_APP_NAME = 'core'; // Name of the app parameter used to retrive phrases private $_ci; // Code igniter instance + private $UDFs; // Associative array containing names and values of the given UDF parameters /** * Loads fhc helper @@ -55,6 +56,8 @@ class UDFLib $this->_ci =& get_instance(); $this->_ci->load->helper('fhc'); + + $this->UDFs = array(); // by default is an empty array } // -------------------------------------------------------------------------------------------------