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
This commit is contained in:
mozilla.mano%sent.com 2007-03-23 01:34:28 +00:00
parent 49034361ca
commit bdfd9c19a9

View File

@ -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);