- Moved spl_autoload_register from application/config/config.php to application/config/core_includes.php

- application/config/core_includes.php is included by index.ci.php
- Renamed the prefix of the helpers from "fhc_" to "hlp_"
- Adapted the helpers includes
This commit is contained in:
Paolo
2018-07-18 12:04:00 +02:00
parent 5635f1792c
commit bb52aee900
17 changed files with 27 additions and 25 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ class FiltersLib
$this->_ci =& get_instance(); // get code igniter instance
// Loads authentication helper
$this->_ci->load->helper('fhc_authentication'); // NOTE: needed to load custom filters do not remove!
$this->_ci->load->helper('hlp_authentication'); // NOTE: needed to load custom filters do not remove!
$this->_filterUniqueId = $this->_getFilterUniqueId($params); // sets the id for the related filter widget
}