зеркало из https://github.com/mozilla/pjs.git
Bug 742396 - Change stored password notification should truncate long usernames [r=zpao]
This commit is contained in:
Родитель
7bfec0e5d0
Коммит
0718eb51f3
|
@ -1016,13 +1016,15 @@ LoginManagerPrompter.prototype = {
|
|||
*/
|
||||
_showChangeLoginNotification : function (aNotifyObj, aOldLogin, aNewPassword) {
|
||||
var notificationText;
|
||||
if (aOldLogin.username)
|
||||
if (aOldLogin.username) {
|
||||
var displayUser = this._sanitizeUsername(aOldLogin.username);
|
||||
notificationText = this._getLocalizedString(
|
||||
"updatePasswordMsg",
|
||||
[aOldLogin.username]);
|
||||
else
|
||||
[displayUser]);
|
||||
} else {
|
||||
notificationText = this._getLocalizedString(
|
||||
"updatePasswordMsgNoUser");
|
||||
}
|
||||
|
||||
var changeButtonText =
|
||||
this._getLocalizedString("notifyBarUpdateButtonText");
|
||||
|
|
Загрузка…
Ссылка в новой задаче