diff options
author | joel hansson <joel.hansson@gmail.com> | 2013-05-01 12:29:15 +0300 |
---|---|---|
committer | joel hansson <joel.hansson@gmail.com> | 2013-05-01 12:29:15 +0300 |
commit | 7f58b0ef7ce22eb4b5666f1cd4b71de95392923f (patch) | |
tree | 5f24c995a710bca4144f1d0660207f9afb0d1663 /lib/user | |
parent | 6163a85668d0dced5c3644e3cc2b084e3e8d8541 (diff) | |
download | nextcloud-server-7f58b0ef7ce22eb4b5666f1cd4b71de95392923f.tar.gz nextcloud-server-7f58b0ef7ce22eb4b5666f1cd4b71de95392923f.zip |
typo fix in a comment.
Diffstat (limited to 'lib/user')
-rw-r--r-- | lib/user/database.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/user/database.php b/lib/user/database.php index ea938790d22..63c64ed43d3 100644 --- a/lib/user/database.php +++ b/lib/user/database.php @@ -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); } |