diff options
author | Florian Pritz <bluewind@xinu.at> | 2023-01-29 14:11:26 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2023-01-29 14:11:26 +0100 |
commit | 0ca713be4d12c0c27c4997c5f206cab699dcaa15 (patch) | |
tree | c512ec5ccafb04a5216a2176315d3aa959cc22fb /application/models | |
parent | 93fbe8dccec7b14c024259f83543bde4a95be298 (diff) |
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 <bluewind@xinu.at>
Diffstat (limited to 'application/models')
-rw-r--r-- | application/models/Mfile.php | 1 | ||||
-rw-r--r-- | application/models/Mmultipaste.php | 1 | ||||
-rw-r--r-- | application/models/Muser.php | 2 |
3 files changed, 0 insertions, 4 deletions
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']; |