From ed33d6dad3ba606c0537b0f38dcef1f8ce46292a Mon Sep 17 00:00:00 2001 From: "alecf%netscape.com" Date: Thu, 9 Mar 2000 05:16:53 +0000 Subject: [PATCH] fix for #31038 - move the smtpService initialization to just before invalid accounts get loaded r=sspitzer a=jar git-svn-id: svn://10.0.0.236/trunk@62457 18797224-902f-48f8-a5cc-f745e15eee43 --- .../base/prefs/resources/content/AccountWizard.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mozilla/mailnews/base/prefs/resources/content/AccountWizard.js b/mozilla/mailnews/base/prefs/resources/content/AccountWizard.js index cc2baa137ac..d6ffef26e67 100644 --- a/mozilla/mailnews/base/prefs/resources/content/AccountWizard.js +++ b/mozilla/mailnews/base/prefs/resources/content/AccountWizard.js @@ -94,16 +94,16 @@ function onLoad() { wizardManager.URL_PagePostfix = ".xul"; wizardManager.SetHandlers(null, null, onFinish, null, null, null); - checkForInvalidAccounts(); - var pageData = GetPageData(); - updateMap(pageData, gWizardMap); - // load up the SMTP service for later if (!smtpService) { smtpService = Components.classes["component://netscape/messengercompose/smtp"].getService(Components.interfaces.nsISmtpService); } + checkForInvalidAccounts(); + var pageData = GetPageData(); + updateMap(pageData, gWizardMap); + // skip the first page if we have an account if (currentAccount) { // skip past first pane