From 97be0f65ccc1b89d2d9ef999e21c56f69ae637c6 Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Mon, 4 Mar 2019 13:32:11 +0100 Subject: Fix dynamic addition of build date. --- application/palemoon/base/content/aboutDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'application/palemoon') diff --git a/application/palemoon/base/content/aboutDialog.js b/application/palemoon/base/content/aboutDialog.js index 980c64259..e4e18f2cf 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 -- cgit v1.2.3