From ced7398e3c567bd50ec217e176b8dbabdd601f9c Mon Sep 17 00:00:00 2001
From: Bimon <Bimon@ispconfig3>
Date: Tue, 27 Sep 2011 07:19:59 -0400
Subject: [PATCH] line 117 " && $user['active']" removed reason: not necessary here, check is in line 141, when checking in line 117 and setting $user to false user blocked message will never show

---
 interface/lib/classes/auth.inc.php |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/interface/lib/classes/auth.inc.php b/interface/lib/classes/auth.inc.php
index 1002bd6..aa4eb9f 100644
--- a/interface/lib/classes/auth.inc.php
+++ b/interface/lib/classes/auth.inc.php
@@ -132,6 +132,16 @@
 		}
 		return $password;
 	}
+	
+	public function crypt_password($cleartext_password) {
+		$salt="$1$";
+		$base64_alphabet='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
+		for ($n=0;$n<8;$n++) {
+			$salt.=$base64_alphabet[mt_rand(0,63)];
+		}
+		$salt.="$";
+		return crypt($cleartext_password,$salt);
+	}
 		
 }
 

--
Gitblit v1.9.1