Index: branches/unlabeled/unlabeled-1.1.2/core/kernel/utility/formatters/password_formatter.php =================================================================== diff -u -r4950 -r6237 --- branches/unlabeled/unlabeled-1.1.2/core/kernel/utility/formatters/password_formatter.php (.../password_formatter.php) (revision 4950) +++ branches/unlabeled/unlabeled-1.1.2/core/kernel/utility/formatters/password_formatter.php (.../password_formatter.php) (revision 6237) @@ -90,8 +90,8 @@ return $this->EncryptPassword($value); } - function EncryptPassword($value) + function EncryptPassword($value, $salt) { - return md5($value); + return md5(md5($value).$salt); } } \ No newline at end of file