summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/ipa.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/src/freeipa/ipa.js')
-rw-r--r--install/ui/src/freeipa/ipa.js11
1 files changed, 1 insertions, 10 deletions
diff --git a/install/ui/src/freeipa/ipa.js b/install/ui/src/freeipa/ipa.js
index 51b4e1d2..fc04c56e 100644
--- a/install/ui/src/freeipa/ipa.js
+++ b/install/ui/src/freeipa/ipa.js
@@ -589,16 +589,7 @@ IPA.update_password_expiration = function() {
if (diff <= notify_days) {
message = text.get('@i18n:password.expires_in');
message = message.replace('${days}', diff);
- container.append(message + ' ');
- $('<a/>', {
- href: '#reset-password',
- click: function() {
- IPA.password_selfservice();
- return false;
- },
- text: text.get('@i18n:password.reset_password_sentence'),
- title: text.get('@i18n:password.reset_password')
- }).appendTo(container);
+ container.append(message);
}
}
};