Display an error message when no changes have been made - #2900

This commit is contained in:
tatiana.llorente@artica.es 2018-11-08 12:04:08 +01:00
parent c7a54182a3
commit 85adf7cf8d
1 changed files with 12 additions and 1 deletions

View File

@ -160,7 +160,9 @@ if (isset ($_GET["modified"]) && !$view_mode) {
// message could be confussing to the user.
if($return){
$success_msg = __('Password successfully updated');
if(!empty($password_new) && !empty($password_confirm)){
$success_msg = __('Password successfully updated');
}
$return_update_user = update_user ($id, $upd_info);
@ -170,6 +172,15 @@ if (isset ($_GET["modified"]) && !$view_mode) {
elseif($return_update_user == true){
$success_msg = __('User info successfully updated');
}
else{
if(!empty($password_new) && !empty($password_confirm)){
$success_msg = __('Password successfully updated');
}
else{
$return=false;
$error_msg = __('No changes have been made');
}
}
$user_info = $upd_info;
}