summaryrefslogtreecommitdiff
path: root/src/lib/Login.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Login.class.php')
-rw-r--r--src/lib/Login.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Login.class.php b/src/lib/Login.class.php
index a470176..bb21928 100644
--- a/src/lib/Login.class.php
+++ b/src/lib/Login.class.php
@@ -19,7 +19,7 @@ class Login {
return 2;
}
$hash = $db->getPasswordHash($uid);
- if ($hasher->CheckPassword($password, $hash)) {
+ if ($hasher->check($password, $hash)) {
// success
$_SESSION['uid'] = $uid;
return 0;