* Updated jQuery version

* Updated ZeroClipboard version
* New temporary master password function
* New help boxes for some functions
* New password box with copy to clipboard function
* Updated some fields on db structure
* Minor bugfixes and UI changes
This commit is contained in:
nuxsmin
2015-03-28 11:51:02 +01:00
parent ec1a5c8cdc
commit 40acdb2ef8
23 changed files with 510 additions and 172 deletions

View File

@@ -1063,7 +1063,7 @@ class SP_Users
if ($showPass == true) {
return $clearMasterPass;
} else {
$_SESSION['mPassPwd'] = substr(sha1(uniqid()), 0, 32);
$_SESSION['mPassPwd'] = SP_Util::generate_random_bytes(32);
$sessionMasterPass = SP_Crypt::mkCustomMPassEncrypt($_SESSION["mPassPwd"], $clearMasterPass);