From 4a449261e59979cca734252a44ee4f8462aa39ac Mon Sep 17 00:00:00 2001 From: "ducarroz%netscape.com" Date: Sat, 24 Mar 2001 00:10:59 +0000 Subject: [PATCH] FIx for bug 73041. SendMsg now has only two parameters. SR=sspitzer git-svn-id: svn://10.0.0.236/trunk@90293 18797224-902f-48f8-a5cc-f745e15eee43 --- .../mailnews/compose/resources/content/MsgComposeCommands.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/mailnews/compose/resources/content/MsgComposeCommands.js b/mozilla/mailnews/compose/resources/content/MsgComposeCommands.js index efa4fd23f45..39e74f45f2c 100644 --- a/mozilla/mailnews/compose/resources/content/MsgComposeCommands.js +++ b/mozilla/mailnews/compose/resources/content/MsgComposeCommands.js @@ -1100,12 +1100,12 @@ function GenericSendMessage( msgType ) try { windowLocked = true; CommandUpdate_MsgCompose(); - msgCompose.SendMsg(msgType, getCurrentIdentity(), null); + msgCompose.SendMsg(msgType, getCurrentIdentity()); contentChanged = false; msgCompose.bodyModified = false; } catch (ex) { - dump("failed to SendMsg\n"); + dump("failed to SendMsg: " + ex + "\n"); windowLocked = false; CommandUpdate_MsgCompose(); }