From 85db62133fb8949546b94bcc616b9308ceb9a75c Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 25 Jan 2012 10:47:32 +0400 Subject: go back to previous make_password() --- include/functions.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index a4e19a231..415047458 100644 --- a/include/functions.php +++ b/include/functions.php @@ -818,7 +818,20 @@ function make_password($length = 8) { - return substr(bin2hex(get_random_bytes($length / 2)), 0, $length); + $password = ""; + $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ"; + + $i = 0; + + while ($i < $length) { + $char = substr($possible, mt_rand(0, strlen($possible)-1), 1); + + if (!strstr($password, $char)) { + $password .= $char; + $i++; + } + } + return $password; } // this is called after user is created to initialize default feeds, labels -- cgit v1.2.3