fix for bug #408862: "bookmark this frame" is broken

r=dietrich, a=schrep
This commit is contained in:
sspitzer%mozilla.org 2007-12-19 17:25:09 +00:00
Родитель 4d0677b18f
Коммит eb66f4575d
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

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