Fix bug #3413611: results page should be added to history

svn path=/trunk/netsurf/; revision=12878
This commit is contained in:
John Mark Bell 2011-09-26 08:46:00 +00:00
parent 0b6b01f08f
commit e7dffc15b1
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ bool search_web_new_window(struct browser_window *bw, const char *searchterm)
return false;
url = search_web_get_url(encsearchterm);
free(encsearchterm);
browser_window_create(url, bw, NULL, false, true);
browser_window_create(url, bw, NULL, true, true);
free(url);
return true;
}