From d422bb1bc5a5647e8208abdd4a9e81c7ccb65701 Mon Sep 17 00:00:00 2001 From: "blakeross%telocity.com" Date: Tue, 17 Feb 2004 07:40:57 +0000 Subject: [PATCH] Fix 234136: middle-clicking link no longer makes it appear visited. --- browser/base/content/contentAreaUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/base/content/contentAreaUtils.js b/browser/base/content/contentAreaUtils.js index 36d9e767d55a..ac9bcec6fb07 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.