From c56dfe137d25de8125da66c19f25be5a0be0bacf Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Fri, 28 Nov 2008 13:03:28 +0000 Subject: [PATCH] fix broken 'wildignore' validator --- content/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/ui.js b/content/ui.js index 367a3c11..302be48a 100644 --- a/content/ui.js +++ b/content/ui.js @@ -499,7 +499,7 @@ function CommandLine() //{{{ // TODO: allow for escaping the "," try { - new RegExp("^(" + value.join("|") + ")$"); + RegExp("^(" + values.join("|") + ")$"); return true; } catch (e)