Bug 374990 - Default insertion-point for a new item is passed as its default description. r=gavin.

This commit is contained in:
mozilla.mano@sent.com 2007-03-22 18:34:28 -07:00
Родитель b7dce54bb8
Коммит 68181975a3
1 изменённых файлов: 2 добавлений и 2 удалений

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

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