r408@creusa: crschmidt | 2006-05-27 12:44:36 -0400

Commit change to Feature prototype call, reordering to put id last.


git-svn-id: http://svn.openlayers.org/trunk/openlayers@432 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
crschmidt
2006-05-27 19:17:48 +00:00
parent f1093679f9
commit fcd1c509e6

View File

@@ -15,7 +15,7 @@ OpenLayers.Feature.WFS.prototype =
var newArguments = arguments;
if (arguments.length > 0) {
var data = this.processXMLNode(xmlNode);
newArguments = new Array(layer, data.id, data.lonlat, data)
newArguments = new Array(layer, data.lonlat, data, data.id)
}
OpenLayers.Feature.prototype.initialize.apply(this, newArguments);