summaryrefslogtreecommitdiffstats
path: root/application/models/Muser.php
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2023-01-29 14:11:26 +0100
committerFlorian Pritz <bluewind@xinu.at>2023-01-29 14:11:26 +0100
commit0ca713be4d12c0c27c4997c5f206cab699dcaa15 (patch)
treec512ec5ccafb04a5216a2176315d3aa959cc22fb /application/models/Muser.php
parent93fbe8dccec7b14c024259f83543bde4a95be298 (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/Muser.php')
-rw-r--r--application/models/Muser.php2
1 files changed, 0 insertions, 2 deletions
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'];