make redraw have a 'force' parameter to allow it to actually add random data to

the params hash to  bust caches. r=ahocevar (Closes #1295)


git-svn-id: http://svn.openlayers.org/trunk/openlayers@6171 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
crschmidt
2008-02-09 18:29:18 +00:00
parent 09a6814e2d
commit 8e2b4956f2
3 changed files with 24 additions and 3 deletions

View File

@@ -193,7 +193,7 @@ OpenLayers.Layer.WMS = OpenLayers.Class(OpenLayers.Layer.Grid, {
mergeNewParams:function(newParams) {
var upperParams = OpenLayers.Util.upperCaseObject(newParams);
var newArguments = [upperParams];
OpenLayers.Layer.Grid.prototype.mergeNewParams.apply(this,
return OpenLayers.Layer.Grid.prototype.mergeNewParams.apply(this,
newArguments);
},