diff options
author | Einar Egilsson | 2009-10-20 14:36:34 +0000 |
---|---|---|
committer | Einar Egilsson | 2009-10-20 14:36:34 +0000 |
commit | 7a35fcd096f1fc4f81fc9cbc5d41ced28b752a89 (patch) | |
tree | 199914c15f332fceaf4af7e071381b54ca520d45 /chrome | |
parent | fac1dc90b505c5bf0e8833bc1aecf4f53a7348b5 (diff) |
Fixed small bug
git-svn-id: http://einaregilsson.googlecode.com/svn/mozilla/redirector/trunk@287 119bf307-c92d-0410-89bd-8f53e6181181
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/content/code/redirect.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/content/code/redirect.js b/chrome/content/code/redirect.js index 2be8fc9..c4fddf8 100644 --- a/chrome/content/code/redirect.js +++ b/chrome/content/code/redirect.js @@ -2,6 +2,7 @@ Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
+
function Redirect(exampleUrl, includePattern, redirectUrl, patternType, excludePattern, unescapeMatches, disabled) {
this._init(exampleUrl, includePattern, redirectUrl, patternType, excludePattern, unescapeMatches, disabled);
}
@@ -29,7 +30,7 @@ Redirect.prototype = { this._rxExclude = this._compile(value);
},
- redirectTo : null,
+ redirectUrl : null,
get patternType() { return this._patternType; },
set patternType(value) {
|