Fixed the bug related with the need to enter passwords when you change the profile of any operator.

This commit is contained in:
Dmitriy Simushev 2012-01-18 10:11:49 +00:00 committed by Evgeny Gryaznov
parent 4bb79cb7cb
commit 7b35045f06

View File

@ -78,7 +78,7 @@ if (isset($_POST['login']) && isset($_POST['password'])) {
} else {
update_operator($opId, $login, $email, $password, $localname, $commonname);
// update the session password
if (isset($password) && $opId == $operator['operatorid']) {
if (!empty($password) && $opId == $operator['operatorid']) {
$toDashboard = $operator['vcpassword'] == md5('') && $password != '';
$_SESSION["${mysqlprefix}operator"]['vcpassword'] = md5($password);
if($toDashboard) {