Documentation: Update $wgPasswordDefault and BcryptPassword
authorwithoutaname <drevitchi@gmail.com>
Tue, 29 Jul 2014 08:57:30 +0000 (01:57 -0700)
committerwithoutaname <drevitchi@gmail.com>
Tue, 29 Jul 2014 08:57:30 +0000 (01:57 -0700)
Slight syntax code change for $wgPasswordDefault in DefaultSettings.php
and fixed reference to global in BcryptPassword.php.

Change-Id: I8d1d12c09ecd2f422f21a586e948f314e29fa605

includes/DefaultSettings.php
includes/password/BcryptPassword.php

index e6dd544..1f58196 100644 (file)
@@ -4134,7 +4134,7 @@ $wgMinimalPasswordLength = 1;
  */
 $wgInvalidPasswordReset = true;
 
-/*
+/**
  * Default password type to use when hashing user passwords
  *
  * @since 1.24
index 4e5e878..dd806e2 100644 (file)
@@ -24,7 +24,7 @@
  * A Bcrypt-hashed password
  *
  * This is a computationally complex password hash for use in modern applications.
- * The number of rounds can be configured by $wgPasswordCost.
+ * The number of rounds can be configured by $wgPasswordConfig['bcrypt']['cost'].
  *
  * @since 1.24
  */