| Index: lib/filterClasses.js |
| =================================================================== |
| --- a/lib/filterClasses.js |
| +++ b/lib/filterClasses.js |
| @@ -642,17 +642,17 @@ |
| * @param {string} [sitekeys] |
| * Public keys of websites that this filter should apply to |
| * @constructor |
| * @augments ActiveFilter |
| */ |
| function RegExpFilter(text, regexpSource, contentType, matchCase, domains, |
| thirdParty, sitekeys) |
| { |
| - ActiveFilter.call(this, text, domains, sitekeys); |
| + ActiveFilter.call(this, text, domains); |
| if (contentType != null) |
| this.contentType = contentType; |
| if (matchCase) |
| this.matchCase = matchCase; |
| if (thirdParty != null) |
| this.thirdParty = thirdParty; |
| if (sitekeys != null) |