From 0110094b2d206e88dceb0cfe2bc4c85f2e826dda Mon Sep 17 00:00:00 2001 From: moglia <moglia@ispconfig3> Date: Thu, 13 May 2010 00:39:42 -0400 Subject: [PATCH] Small brazilian portuguese language files update. br_database_list.lng --- interface/web/login/password_reset.php | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/interface/web/login/password_reset.php b/interface/web/login/password_reset.php index e4e2da5..5c23cc4 100644 --- a/interface/web/login/password_reset.php +++ b/interface/web/login/password_reset.php @@ -54,8 +54,10 @@ if($client['client_id'] > 0) { $new_password = md5 (uniqid (rand())); $salt="$1$"; - for ($n=0;$n<11;$n++) { - $salt.=chr(mt_rand(64,126)); + $base64_alphabet='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; + for ($n=0;$n<8;$n++) { + //$salt.=chr(mt_rand(64,126)); + $salt.=$base64_alphabet[mt_rand(0,63)]; } $salt.="$"; $new_password_encrypted = crypt($new_password,$salt); -- Gitblit v1.9.1