From 7b4c3a2cdbc0f5ac9d237f91164ee8fea8210095 Mon Sep 17 00:00:00 2001 From: Einar Egilsson Date: Mon, 19 Oct 2009 09:56:04 +0000 Subject: Check for loop redirects implemented git-svn-id: http://einaregilsson.googlecode.com/svn/mozilla/redirector/trunk@280 119bf307-c92d-0410-89bd-8f53e6181181 --- chrome/content/code/redirect.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'chrome/content/code/redirect.js') diff --git a/chrome/content/code/redirect.js b/chrome/content/code/redirect.js index 02e975d..7016715 100644 --- a/chrome/content/code/redirect.js +++ b/chrome/content/code/redirect.js @@ -163,11 +163,14 @@ Redirect.prototype = { for (var i = 1; i < matches.length; i++) { resultUrl = resultUrl.replace(new RegExp('\\$' + i, 'gi'), this.unescapeMatches ? unescape(matches[i]) : matches[i]); } + this._rxInclude.lastIndex = 0; return resultUrl; }, _excludeMatch : function(url) { - return !!(this._rxExclude && this._rxExclude.exec(url)); + var shouldExclude = !!(this._rxExclude && this._rxExclude.exec(url)); + this._rxExclude.lastIndex = 0; + return shouldExclude; }, clone : function() { -- cgit v1.2.3-70-g09d2