summaryrefslogtreecommitdiff
path: root/inc/PassHash.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/PassHash.class.php')
-rw-r--r--inc/PassHash.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/PassHash.class.php b/inc/PassHash.class.php
index cb46c5928..541de6752 100644
--- a/inc/PassHash.class.php
+++ b/inc/PassHash.class.php
@@ -126,7 +126,7 @@ class PassHash {
return crypt($clear,'$1$'.$salt.'$');
}else{
// Fall back to PHP-only implementation
- return $this->apr1($clear, $salt, '1');
+ return $this->hash_apr1($clear, $salt, '1');
}
}