'=' != '==' oops.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@1003 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
euzuro
2006-07-25 21:40:02 +00:00
parent d221e33ba6
commit 65da9e491e

View File

@@ -203,7 +203,7 @@ OpenLayers.Layer.WFS.prototype =
for(var i=0; i < tile.features.length; i++) {
var feature = tile.features[i];
if (feature.id = featureID) {
if (feature.id == featureID) {
foundFeature = feature;
}
}