From 0ca713be4d12c0c27c4997c5f206cab699dcaa15 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 29 Jan 2023 14:11:26 +0100 Subject: fix: Remove call to non-existant Model constructor This has been removed in the recently merged changes from CI upstream. Signed-off-by: Florian Pritz --- application/models/Mfile.php | 1 - application/models/Mmultipaste.php | 1 - application/models/Muser.php | 2 -- 3 files changed, 4 deletions(-) (limited to 'application') diff --git a/application/models/Mfile.php b/application/models/Mfile.php index 0bdac286d..2c433887d 100644 --- a/application/models/Mfile.php +++ b/application/models/Mfile.php @@ -13,7 +13,6 @@ class Mfile extends CI_Model { function __construct() { - parent::__construct(); $this->load->model("muser"); $this->upload_path = $this->config->item('upload_path'); diff --git a/application/models/Mmultipaste.php b/application/models/Mmultipaste.php index 52ea4dfb4..014dc4d61 100644 --- a/application/models/Mmultipaste.php +++ b/application/models/Mmultipaste.php @@ -11,7 +11,6 @@ class Mmultipaste extends CI_Model { function __construct() { - parent::__construct(); $this->load->model("muser"); $this->load->model("mfile"); } diff --git a/application/models/Muser.php b/application/models/Muser.php index 521d1c989..1d8e97d14 100644 --- a/application/models/Muser.php +++ b/application/models/Muser.php @@ -19,8 +19,6 @@ class Muser extends CI_Model { function __construct() { - parent::__construct(); - $this->load->helper("filebin"); $this->load->driver("duser"); $this->hashalgo = $this->config->item('auth_db')['hashing_algorithm']; -- cgit v1.2.3-24-g4f1b