diff --git a/browser/base/content/contentAreaUtils.js b/browser/base/content/contentAreaUtils.js index 36d9e767d55..ac9bcec6fb0 100644 --- a/browser/base/content/contentAreaUtils.js +++ b/browser/base/content/contentAreaUtils.js @@ -68,7 +68,7 @@ function markLinkVisited(href, linkNode) var uri = makeURL(href); if (!globalHistory.isVisited(uri)) { - globalHistory.addPage(uri, false, false); + globalHistory.addURI(uri, false, false); var oldHref = linkNode.getAttribute("href"); if (typeof oldHref == "string") { // Use setAttribute instead of direct assignment.