From 718ad5d80777edcfb4339191d0f2016e1090cb25 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Thu, 10 Mar 2011 22:20:52 +1100 Subject: [PATCH] Fix Range() struct definition. Closes issue #428. --- common/modules/sanitizer.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/modules/sanitizer.jsm b/common/modules/sanitizer.jsm index 6f6fb0ce..27880c13 100644 --- a/common/modules/sanitizer.jsm +++ b/common/modules/sanitizer.jsm @@ -33,7 +33,7 @@ update(Range.prototype, { get isEternity() this.max == null && this.min == null, get isSession() this.max == null && this.min == sanitizer.sessionStart, - get native() this.isEternity ? null : [range.min || 0, range.max == null ? Number.MAX_VALUE : range.max] + get native() this.isEternity ? null : [this.min || 0, this.max == null ? Number.MAX_VALUE : this.max] }); var Item = Class("SanitizeItem", {