Adding missing parent constructor call in Privacy.php controller

This commit is contained in:
Alex Tselegidis 2020-12-09 14:55:27 +02:00
parent 39d4f3185e
commit 75905752f7
1 changed files with 1 additions and 0 deletions

View File

@ -22,6 +22,7 @@ class Privacy extends EA_Controller {
*/
public function __construct()
{
parent::__construct();
$this->load->driver('cache', ['adapter' => 'file']);
$this->load->model('customers_model');
}