mirror of
https://github.com/Mibew/design.git
synced 2025-01-23 02:20:34 +03:00
Fixed the bug related with the need to enter passwords when you change the profile of any operator.
This commit is contained in:
parent
450e970ed8
commit
169680eda7
@ -121,12 +121,6 @@ function update_operator($operatorid, $login, $email, $password, $localename, $c
|
|||||||
|
|
||||||
perform_query($query, $link);
|
perform_query($query, $link);
|
||||||
close_connection($link);
|
close_connection($link);
|
||||||
// update the session password
|
|
||||||
if (isset($password))
|
|
||||||
{
|
|
||||||
$_SESSION[$mysqlprefix.'operator']['vcpassword']=md5($password);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function update_operator_avatar($operatorid, $avatar)
|
function update_operator_avatar($operatorid, $avatar)
|
||||||
|
@ -78,7 +78,7 @@ if (isset($_POST['login']) && isset($_POST['password'])) {
|
|||||||
} else {
|
} else {
|
||||||
update_operator($opId, $login, $email, $password, $localname, $commonname);
|
update_operator($opId, $login, $email, $password, $localname, $commonname);
|
||||||
// update the session password
|
// update the session password
|
||||||
if (isset($password) && $opId == $operator['operatorid']) {
|
if (!empty($password) && $opId == $operator['operatorid']) {
|
||||||
$toDashboard = $operator['vcpassword'] == md5('') && $password != '';
|
$toDashboard = $operator['vcpassword'] == md5('') && $password != '';
|
||||||
$_SESSION["${mysqlprefix}operator"]['vcpassword'] = md5($password);
|
$_SESSION["${mysqlprefix}operator"]['vcpassword'] = md5($password);
|
||||||
if($toDashboard) {
|
if($toDashboard) {
|
||||||
|
Loading…
Reference in New Issue
Block a user