From bc0273b478b2185ec51adc4a27db2e1b014a6dab Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Sat, 21 Oct 2017 16:39:52 +0200 Subject: Strip HHMM from the about dialog displayed version. --- browser/base/content/aboutDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'browser/base/content') diff --git a/browser/base/content/aboutDialog.js b/browser/base/content/aboutDialog.js index 04384d584..f9571621f 100644 --- a/browser/base/content/aboutDialog.js +++ b/browser/base/content/aboutDialog.js @@ -50,7 +50,7 @@ function init(aEvent) let hour = buildID.slice(8, 10); let minute = buildID.slice(10, 12); if (Services.prefs.getBoolPref("general.useragent.appVersionIsBuildID")) { - versionField.textContent = `${year}.${month}.${day}.${hour}${minute}`; + versionField.textContent = `${year}.${month}.${day}`; } else { versionField.textContent = `v` + version + ` (${year}-${month}-${day})`; } -- cgit v1.2.3