summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps
diff options
context:
space:
mode:
authorjanekptacijarabaci <janekptacijarabaci@seznam.cz>2017-07-30 07:44:13 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-02-12 15:28:44 +0100
commit0f99df52d5309158c7b916581c5a79496b1844db (patch)
treeb27d38535f73a25c48fdaca78ffc929f567deecd /toolkit/mozapps
parent3adc70dadd03c444ae2ee87673f68cbf07dd060a (diff)
downloadUXP-0f99df52d5309158c7b916581c5a79496b1844db.tar
UXP-0f99df52d5309158c7b916581c5a79496b1844db.tar.gz
UXP-0f99df52d5309158c7b916581c5a79496b1844db.tar.lz
UXP-0f99df52d5309158c7b916581c5a79496b1844db.tar.xz
UXP-0f99df52d5309158c7b916581c5a79496b1844db.zip
Exclude Update stuff from about:support if the updater isn't built.
Diffstat (limited to 'toolkit/mozapps')
-rw-r--r--toolkit/mozapps/update/content/history.js2
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)