Bug 491883 - Clear Recent History removes pages (URIs) from history instead of visits (r=johnath)

This commit is contained in:
adw@mozilla.com 2009-05-20 16:05:25 -07:00
Родитель 666cae4e72
Коммит 5da2e47dea
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -198,7 +198,7 @@ Sanitizer.prototype = {
var globalHistory = Components.classes["@mozilla.org/browser/global-history;2"]
.getService(Components.interfaces.nsIBrowserHistory);
if (this.range)
globalHistory.removePagesByTimeframe(this.range[0], this.range[1]);
globalHistory.removeVisitsByTimeframe(this.range[0], this.range[1]);
else
globalHistory.removeAllPages();