From 314fba44aac978ea071e3def5b127c68340c9618 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Thu, 18 Sep 2008 12:50:39 +0000 Subject: [PATCH] fix broken :set! regression --- content/options.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/options.js b/content/options.js index 33b94241..078f77d7 100644 --- a/content/options.js +++ b/content/options.js @@ -903,7 +903,7 @@ liberator.Options = function () //{{{ if ((!onlyNonDefault || userValue) && pref.indexOf(filter) >= 0) { name = pref; - value = this.getPref(name); + value = liberator.options.getPref(name); if (typeof value == "string") value = value.substr(0, 100).replace(/\n/g, " ");