From 323f3ab1753b1833ed4f631b80e10f9059f5760e Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Mon, 6 Apr 2009 16:42:48 -0400 Subject: [PATCH] Fix template.highlightURL --- common/content/template.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/template.js b/common/content/template.js index fe2e0eab..01a013c0 100644 --- a/common/content/template.js +++ b/common/content/template.js @@ -208,7 +208,7 @@ const template = { highlightURL: function highlightURL(str, force) { if (force || /^[a-zA-Z]+:\/\//.test(str)) - return {str}; + return {str}; else return str; },