From 27e838e743d2aeb374aab9b0547c897290a9ce8a Mon Sep 17 00:00:00 2001 From: Wes Kocher Date: Mon, 30 Mar 2015 09:55:32 -0700 Subject: [PATCH] Bug 1137149 - Show the error message no matter what before continuing with the submission process --- js/Step.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/Step.js b/js/Step.js index 96650d8..590166b 100644 --- a/js/Step.js +++ b/js/Step.js @@ -257,6 +257,7 @@ Step.prototype.onSubmitError = function Step_onSubmitError(where, msg, i) { this.startSubmit(i); return; } + UI.showErrorMessage(msg); this.continueSubmit(i); };