From 9e1d7a55fcebbe22c009e00444dafe65bba8036a Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Mon, 4 Mar 2019 13:32:11 +0100 Subject: [PATCH] Fix dynamic addition of build date. --- application/palemoon/base/content/aboutDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/palemoon/base/content/aboutDialog.js b/application/palemoon/base/content/aboutDialog.js index 980c642594..e4e18f2cff 100644 --- a/application/palemoon/base/content/aboutDialog.js +++ b/application/palemoon/base/content/aboutDialog.js @@ -42,7 +42,7 @@ function init(aEvent) if (/[ab]\d+$/.test(version)) { let buildID = Services.appinfo.appBuildID; let buildDate = buildID.slice(0,4) + "-" + buildID.slice(4,6) + "-" + buildID.slice(6,8); - document.getElementById("PMversion").textContent += " (" + buildDate + ")"; + document.getElementById("aboutVersion").textContent += " (" + buildDate + ")"; } #ifdef XP_MACOSX