diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-09-07 16:59:08 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-09-07 17:01:48 +0200 |
commit | b6e4ec64e4d5e4657bbb4e70e5ae19fa6d869a70 (patch) | |
tree | cc5b3cfb789f9858e6b4ce7c8cececbdcd7e1e55 /lib/libbugzilla.js | |
parent | 1cadc51cc0135b9c4cf338e09c7874e1f49bf61b (diff) | |
download | bugzilla-triage-b6e4ec64e4d5e4657bbb4e70e5ae19fa6d869a70.tar.gz |
Make skipping unimportant pages work again.1.4.7
Skript generating RE was putting too many \/ into it.
New release.
Fixes #115.
Diffstat (limited to 'lib/libbugzilla.js')
-rw-r--r-- | lib/libbugzilla.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libbugzilla.js b/lib/libbugzilla.js index c2c0828..53363a4 100644 --- a/lib/libbugzilla.js +++ b/lib/libbugzilla.js @@ -426,7 +426,7 @@ function processConfigJSON(rawJSON) { config.configData.skipMatchStr = origConstData.matches. map(function(x) { return x.replace("show_bug.cgi\\?id=.*", - "\\/(process_bug|post_bug|attachment).cgi$"); + "(process_bug|post_bug|attachment).cgi$"); }); } else { |