code cleanup, suggested by dveditz.

thanks to Ryan Jones <sciguyryan+bugzilla@gmail.com> for the patch.

r=sspitzer


git-svn-id: svn://10.0.0.236/trunk@214732 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sspitzer%mozilla.org 2006-11-05 00:19:17 +00:00
parent bfed5c3b73
commit cc1fdb18c6

View File

@ -667,7 +667,7 @@ var gUpdatesAvailablePage = {
if (severity == "major") {
// for major updates, use the brandName and the version for the intro
intro = gUpdates.strings.getFormattedString(
"introType_" + severity + "_app_and_version",
"introType_major_app_and_version",
[gUpdates.brandName, gUpdates.update.version]);
this._updateMoreInfoContent =
@ -684,7 +684,7 @@ var gUpdatesAvailablePage = {
// for minor updates, do not include the version
// just use the brandName for the intro
intro = gUpdates.strings.getFormattedString(
"introType_" + severity + "_app", [gUpdates.brandName]);
"introType_minor_app", [gUpdates.brandName]);
var updateMoreInfoURL = document.getElementById("updateMoreInfoURL");
updateMoreInfoURL.href = gUpdates.update.detailsURL;