mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-29 08:45:12 +02:00
Display an error message when no changes have been made - #2900
This commit is contained in:
parent
c7a54182a3
commit
85adf7cf8d
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user