From 0a9b771c22865db43d7caaa13c891c65ee742de8 Mon Sep 17 00:00:00 2001 From: Daniel Bainton Date: Mon, 21 Jul 2008 12:37:12 +0000 Subject: [PATCH] Fixing regexp in options.js. Thanks Konstantin. --- content/options.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/options.js b/content/options.js index 52f87862..ffc8a4fd 100644 --- a/content/options.js +++ b/content/options.js @@ -227,7 +227,7 @@ liberator.Options = function () //{{{ var matches; // 1 - type, 2 - name, 3 - +-., 4 - expr - if (matches = args.match(/([$@&])?([\w:]+)\s*([+-.])?=\s*(.+)/)) + if (matches = args.match(/([$@&])?([\w:]+)\s*([-+.])?=\s*(.+)/)) { if (!matches[1]) {