Bug 742396 - Change stored password notification should truncate long usernames [r=zpao]

This commit is contained in:
Veeraya Pupatwibul 2012-04-05 14:42:58 -07:00
Родитель 7bfec0e5d0
Коммит 0718eb51f3
1 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -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");