Bug 378248 - PlacesCreateLivemarkTransaction doTransaction use getItemURI instead of getFolderURI. patch from onemen.one@gmail.com, r=me.

This commit is contained in:
mozilla.mano@sent.com 2007-04-23 16:34:08 -07:00
Родитель a299f09892
Коммит 2019f586fe
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1805,7 +1805,7 @@ PlacesCreateLivemarkTransaction.prototype = {
.createLivemark(this._container, this._name, this._siteURI,
this._feedURI, this._index);
if (this._annotations) {
var placeURI = this.utils.bookmarks.getItemURI(this._id);
var placeURI = this.utils.bookmarks.getFolderURI(this._id);
this.utils.setAnnotationsForURI(placeURI, this._annotations);
}
},