From 65b6f50bf478295db8589f4fcdc9012c82ecc7e6 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 7 Feb 2020 04:55:10 -0500 Subject: [PATCH] Issue #65 - Don't split in the middle of assignment statements in createProfileWizard.js --- toolkit/profile/content/createProfileWizard.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/toolkit/profile/content/createProfileWizard.js b/toolkit/profile/content/createProfileWizard.js index f13eb8faa5..aa87eacd71 100644 --- a/toolkit/profile/content/createProfileWizard.js +++ b/toolkit/profile/content/createProfileWizard.js @@ -116,11 +116,10 @@ function checkCurrentInput(currentInput) if (!errorMessage) { finishText.className = ""; - finishText.firstChild.data = gProfileManagerBundle #ifdef XP_MACOSX - .getString("profileFinishTextMac"); + finishText.firstChild.data = gProfileManagerBundle.getString("profileFinishTextMac"); #else - .getString("profileFinishText"); + finishText.firstChild.data = gProfileManagerBundle.getString("profileFinishText"); #endif canAdvance = true; }