Merge pull request #2021 from henrymohn/bug-1875_Password-Hint

Removed else statement preventing Success message from displaying cau…
This commit is contained in:
Morris Jobke 2016-11-05 16:54:37 +01:00 committed by GitHub
commit bfd2596381
1 changed files with 10 additions and 11 deletions

View File

@ -235,19 +235,18 @@ $(document).ready(function () {
$(".personal-show-label").show();
$('#pass1').val('');
$('#pass2').val('').change();
}
if (typeof(data.data) !== "undefined") {
OC.msg.finishedSaving('#password-error-msg', data);
} else {
if (typeof(data.data) !== "undefined") {
OC.msg.finishedSaving('#password-error-msg', data);
} else {
OC.msg.finishedSaving('#password-error-msg',
{
'status' : 'error',
'data' : {
'message' : t('core', 'Unable to change password')
}
OC.msg.finishedSaving('#password-error-msg',
{
'status' : 'error',
'data' : {
'message' : t('core', 'Unable to change password')
}
);
}
}
);
}
$(".password-loading").remove();
$("#passwordbutton").removeAttr('disabled');