summaryrefslogtreecommitdiffstats
path: root/application/models
diff options
context:
space:
mode:
Diffstat (limited to 'application/models')
-rw-r--r--application/models/muser.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/application/models/muser.php b/application/models/muser.php
index 8cdc91e6d..c30867e6a 100644
--- a/application/models/muser.php
+++ b/application/models/muser.php
@@ -252,6 +252,12 @@ class Muser extends CI_Model {
));
}
+ public function rehash_password($userid, $password, $hash) {
+ if (password_needs_rehash($hash, $this->hashalgo, $this->hashoptions)) {
+ $this->set_password($userid, $password);
+ }
+ }
+
public function get_upload_id_limits()
{
$userid = $this->get_userid();