diff options
Diffstat (limited to 'toolkit/mozapps/update/content/history.js')
-rw-r--r-- | toolkit/mozapps/update/content/history.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/mozapps/update/content/history.js b/toolkit/mozapps/update/content/history.js index 32a098de5..c5bbccefc 100644 --- a/toolkit/mozapps/update/content/history.js +++ b/toolkit/mozapps/update/content/history.js @@ -37,7 +37,7 @@ var gUpdateHistory = { var element = document.createElementNS(NS_XUL, "update"); this._view.appendChild(element); element.name = bundle.getFormattedString("updateFullName", - [update.name, update.buildID]); + [update.name, (update.buildID ? update.buildID : "-")]); element.type = bundle.getString("updateType_" + update.type); element.installDate = this._formatDate(update.installDate); if (update.detailsURL) |