From dff3d06bb8ca090fb5feec863b1cb7b5ac3513fa Mon Sep 17 00:00:00 2001 From: "ben%netscape.com" Date: Mon, 2 Jul 2001 04:19:44 +0000 Subject: [PATCH] bug 68985 - "Bookmark this link" in browser context menu does not show bookmark creation dialog. Function signature had changed and this call site was not updated. Add 'undefined' parameter (for document character set) to ensure the correct function is called. 'undefined' works as the function being called assumes the character set of the focused window in the case that the passed character set is undefined. r=fabian, sr=blake. git-svn-id: svn://10.0.0.236/trunk@98439 18797224-902f-48f8-a5cc-f745e15eee43 --- .../resources/content/contentAreaContextOverlay.xul | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mozilla/xpfe/communicator/resources/content/contentAreaContextOverlay.xul b/mozilla/xpfe/communicator/resources/content/contentAreaContextOverlay.xul index 293c78dfe12..87909b8189a 100644 --- a/mozilla/xpfe/communicator/resources/content/contentAreaContextOverlay.xul +++ b/mozilla/xpfe/communicator/resources/content/contentAreaContextOverlay.xul @@ -119,7 +119,8 @@ label="&bookmarkLinkCmd.label;" accesskey="&bookmarkLinkCmd.accesskey;" oncommand="BookmarksUtils.addBookmark(contextMenu.linkURL(), - contextMenu.linkText(), true);"/> + contextMenu.linkText(), + undefined, true);"/>