Apply patch for #376 - fixing tile.clear() calls that were mistakenly replaced with OpenLayers.Util.clearArray() at r1590

git-svn-id: http://svn.openlayers.org/trunk/openlayers@1738 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2006-10-26 15:22:37 +00:00
parent 3d58bc6698
commit 9f9c366154
2 changed files with 4 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ OpenLayers.Tile.WFS.prototype =
*/
draw:function() {
if (this.drawn) {
OpenLayers.Util.clearArray(this);
this.clear();
}
OpenLayers.Tile.prototype.draw.apply(this, arguments);
if (this.layer.displayOutsideMaxExtent || (this.layer.maxExtent &&
@@ -131,3 +131,4 @@ OpenLayers.Tile.WFS.prototype =
}
);