diff options
Diffstat (limited to 'application')
-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']; |