Fixing regression 21285 (broken select addresses dialog because of api change in backend). r=alecf

This commit is contained in:
hangas%netscape.com 1999-12-09 21:12:43 +00:00
Родитель 04671df7ac
Коммит aab89c3da9
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -146,7 +146,7 @@ function AddSelectedAddressesIntoBucket(prefix)
uri = resultsTree.selectedItems[item].getAttribute('id');
cardResource = rdf.GetResource(uri);
card = cardResource.QueryInterface(Components.interfaces.nsIAbCard);
address = prefix + "\"" + card.DisplayName + "\" <" + card.PrimaryEmail + ">";
address = prefix + "\"" + card.displayName + "\" <" + card.primaryEmail + ">";
AddAddressIntoBucket(address);
}
}