From c1015d31e49b55e2cdc2c39977bef7c4842961cf Mon Sep 17 00:00:00 2001 From: friedjoff Date: Tue, 8 Jan 2013 15:40:00 +0100 Subject: [PATCH] Restore arguments parameter to make function future-proof --- lib/OpenLayers/Strategy/Fixed.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OpenLayers/Strategy/Fixed.js b/lib/OpenLayers/Strategy/Fixed.js index 00df50325b..00bcfe74e6 100644 --- a/lib/OpenLayers/Strategy/Fixed.js +++ b/lib/OpenLayers/Strategy/Fixed.js @@ -42,7 +42,7 @@ OpenLayers.Strategy.Fixed = OpenLayers.Class(OpenLayers.Strategy, { * the strategy was already active. */ activate: function() { - var activated = OpenLayers.Strategy.prototype.activate.call(this); + var activated = OpenLayers.Strategy.prototype.activate.apply(this, arguments); if(activated) { this.layer.events.on({ "refresh": this.load,