From a51ec724d99457fd31eaa299b7a48bedb9feae90 Mon Sep 17 00:00:00 2001 From: "alecf%netscape.com" Date: Fri, 18 Feb 2000 07:43:38 +0000 Subject: [PATCH] second part of fix for #27913 - make sure identities exist at the time the server is attached to the account, so that there are actually identities associated with the account when the server is loaded and queried by rdf r=sspitzer, a=phil, chofmann --- mailnews/base/prefs/resources/content/AccountWizard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mailnews/base/prefs/resources/content/AccountWizard.js b/mailnews/base/prefs/resources/content/AccountWizard.js index 9ecb6f589516..8e57daa7f504 100644 --- a/mailnews/base/prefs/resources/content/AccountWizard.js +++ b/mailnews/base/prefs/resources/content/AccountWizard.js @@ -250,8 +250,8 @@ function createAccount(accountData) dump("am.createAccount()\n"); var account = am.createAccount(); - account.incomingServer = server; account.addIdentity(identity); + account.incomingServer = server; return account; }