diff --git a/mozilla/browser/base/content/nsContextMenu.js b/mozilla/browser/base/content/nsContextMenu.js index f536fa3894f..eb4fdafa620 100644 --- a/mozilla/browser/base/content/nsContextMenu.js +++ b/mozilla/browser/base/content/nsContextMenu.js @@ -1158,8 +1158,9 @@ nsContextMenu.prototype = { var description = PlacesUtils.getDescriptionFromDocument(doc); var descAnno = { name: DESCRIPTION_ANNO, value: description }; - var txn = PlacesUtils.ptm.createItem(uri, PlacesUtils.bookmarksRootId, -1, - title, null, [descAnno]); + var txn = PlacesUtils.ptm.createItem(uri, + PlacesUtils.bookmarksMenuFolderId, + -1, title, null, [descAnno]); PlacesUtils.ptm.doTransaction(txn); itemId = PlacesUtils.getMostRecentBookmarkForURI(uri); }