diff --git a/common/content/options.js b/common/content/options.js index b2ca0b1b..2b451649 100644 --- a/common/content/options.js +++ b/common/content/options.js @@ -125,7 +125,7 @@ Option.prototype = { aValue = this.globalvalue; if (this.getter) - this.getter.call(this, aValue); + return this.getter.call(this, aValue); return aValue; },