diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-03-04 13:32:11 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-03-04 13:32:11 +0100 |
commit | 97be0f65ccc1b89d2d9ef999e21c56f69ae637c6 (patch) | |
tree | c4ee5c3ee988a4c3da2905f6f0d4980f29159c6e | |
parent | f0c57ac5f22022bc42fc1763297c3bcbf42c45fe (diff) | |
download | UXP-97be0f65ccc1b89d2d9ef999e21c56f69ae637c6.tar UXP-97be0f65ccc1b89d2d9ef999e21c56f69ae637c6.tar.gz UXP-97be0f65ccc1b89d2d9ef999e21c56f69ae637c6.tar.lz UXP-97be0f65ccc1b89d2d9ef999e21c56f69ae637c6.tar.xz UXP-97be0f65ccc1b89d2d9ef999e21c56f69ae637c6.zip |
Fix dynamic addition of build date.
-rw-r--r-- | application/palemoon/base/content/aboutDialog.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 |