typo fix in a comment.

This commit is contained in:
joel hansson 2013-05-01 12:29:15 +03:00
parent 6163a85668
commit 7f58b0ef7c
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class OC_User_Database extends OC_User_Backend {
private function getHasher() {
if(!self::$hasher) {
//we don't want to use DES based crypt(), since it doesn't return a has with a recognisable prefix
//we don't want to use DES based crypt(), since it doesn't return a hash with a recognisable prefix
$forcePortable=(CRYPT_BLOWFISH!=1);
self::$hasher=new PasswordHash(8, $forcePortable);
}