Marius Cramer
2015-05-26 76c0bd312d2db7f30dbf93552151dbee1abeb365
- fixed  FS#3907 - "Reset password" generates too short passwords
1 files modified
1 ■■■■ changed files
interface/lib/classes/auth.inc.php 1 ●●●● patch | view | raw | blame | history
interface/lib/classes/auth.inc.php
@@ -175,7 +175,6 @@
    }
    public function get_random_password($minLength = 8, $special = false) {
        $minLength = $minLength || 10;
        if($minLength < 8) $minLength = 8;
        $maxLength = $minLength + 5;
        $length = mt_rand($minLength, $maxLength);