Skip to content

Commit

Permalink
Merge branch '2024.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
gitlabci committed Jan 29, 2025
2 parents 6d855b9 + 9284aba commit 67634df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tine20/Admin/js/user/EditDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Tine.Admin.UserEditDialog = Ext.extend(Tine.widgets.dialog.EditDialog, {
const passwordField = this.getForm() ? this.getForm().findField('accountPassword') : null;
const updatedPassword = passwordField.getValue();

if (this.record.modified.hasOwnProperty('accountPassword') && updatedPassword) {
if (this.record.modified.hasOwnProperty('accountPassword') && this.record.data.creation_time !== "" && updatedPassword) {
const passwordDialog = new Tine.Tinebase.widgets.dialog.ResetPasswordDialog({
record: this.record,
contactRecord: this.contactRecordPicker.selectedRecord,
Expand Down

0 comments on commit 67634df

Please sign in to comment.