From b773a3fa8311fbf0a9280d008950a7be02a67937 Mon Sep 17 00:00:00 2001 From: "sspitzer%netscape.com" Date: Wed, 12 Jan 2000 07:57:42 +0000 Subject: [PATCH] fix for #13767, when creating a news account, default compose html to false. --- 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 df8e47960003..3c24e765c94d 100644 --- a/mailnews/base/prefs/resources/content/AccountWizard.js +++ b/mailnews/base/prefs/resources/content/AccountWizard.js @@ -242,7 +242,7 @@ function createAccount(hash) { /* new nntp identities should use plain text by default * we wan't that GNKSA (The Good Net-Keeping Seal of Approval) */ - if (type == "nntp") { + if (serverType == "nntp") { identity.composeHtml = false; }