fix for bug #408322: right click, "bookmark this link" doesn't bookmark the link patch=Phil Ringnalda <philringnalda@gmail.com> r=sspitzer a=beltzner

This commit is contained in:
sspitzer@mozilla.org 2007-12-14 10:04:38 -08:00
Родитель 9e59aa41bc
Коммит bfab06b13f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -236,7 +236,7 @@ var PlacesCommandHook = {
var itemId = PlacesUtils.getMostRecentBookmarkForURI(linkURI);
if (itemId == -1) {
var txn = PlacesUtils.ptm.createItem(linkURI, aParent, -1, aTitle);
PlacesUtils.ptm.commitTransaction(txn);
PlacesUtils.ptm.doTransaction(txn);
itemId = PlacesUtils.getMostRecentBookmarkForURI(linkURI);
}