mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-09 17:42:21 +03:00
Adding missing parent constructor call in Privacy.php controller
This commit is contained in:
parent
39d4f3185e
commit
75905752f7
1 changed files with 1 additions and 0 deletions
|
@ -22,6 +22,7 @@ class Privacy extends EA_Controller {
|
||||||
*/
|
*/
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
|
parent::__construct();
|
||||||
$this->load->driver('cache', ['adapter' => 'file']);
|
$this->load->driver('cache', ['adapter' => 'file']);
|
||||||
$this->load->model('customers_model');
|
$this->load->model('customers_model');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue