From e22b0356b7d5400031a14c82c3b868cb0f12547d Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sun, 9 Dec 2007 10:29:49 +0000 Subject: [PATCH] fix util.highlightURL to use the unnamed anchor for link href values to prevent :pageinfo links from being loaded in the MOW --- content/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/util.js b/content/util.js index 156cfca7..37ddacd1 100644 --- a/content/util.js +++ b/content/util.js @@ -178,7 +178,7 @@ vimperator.util = { //{{{ highlightURL: function (str, force) { if (force || /^[a-zA-Z]+:\/\//.test(str)) - return "" + vimperator.util.escapeHTML(str) + ""; + return "" + vimperator.util.escapeHTML(str) + ""; else return str; },