From bdfd9c19a9122edeab7c14f6fc14e990633c5344 Mon Sep 17 00:00:00 2001 From: "mozilla.mano%sent.com" Date: Fri, 23 Mar 2007 01:34:28 +0000 Subject: [PATCH] Bug 374990 - Default insertion-point for a new item is passed as its default description. r=gavin. git-svn-id: svn://10.0.0.236/trunk@222225 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/browser/components/places/content/controller.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/browser/components/places/content/controller.js b/mozilla/browser/components/places/content/controller.js index 6f9bb78aed2..e0569221244 100755 --- a/mozilla/browser/components/places/content/controller.js +++ b/mozilla/browser/components/places/content/controller.js @@ -998,9 +998,9 @@ PlacesController.prototype = { var performed = false; if (aType == "bookmark") - performed = PlacesUtils.showAddBookmarkUI(null, null, ip); + performed = PlacesUtils.showAddBookmarkUI(null, null, null, ip); else if (aType == "livemark") - performed = PlacesUtils.showAddLivemarkUI(null, null, null, ip); + performed = PlacesUtils.showAddLivemarkUI(null, null, null, null, ip); else // folder performed = PlacesUtils.showAddFolderUI(null, ip);