Bug 415169 ? Saving searches within bookmark folders is broken (r=mano, a=beltzner)

This commit is contained in:
dietrich@mozilla.com 2008-02-04 10:10:28 -08:00
parent 7d58adf820
commit 210adeb1ed

View File

@ -290,6 +290,14 @@ var PlacesOrganizer = {
return asQuery(this._content.getResult().root).queryOptions;
},
/**
* Returns the queries associated with the query currently loaded in the
* main places pane.
*/
getCurrentQueries: function PO_getCurrentQueries() {
return asQuery(this._content.getResult().root).getQueries({});
},
/**
* Show the migration wizard for importing from a file.
*/
@ -1042,9 +1050,7 @@ var PlacesQueryBuilder = {
var searchTermsField = document.getElementById("advancedSearch1Textbox");
if (searchTermsField)
setTimeout(function() { searchTermsField.value = PlacesSearchBox.value; }, 10);
var query = PlacesUtils.history.getNewQuery();
query.searchTerms = PlacesSearchBox.value;
this.queries = [query];
this.queries = PlacesOrganizer.getCurrentQueries();
return;
}