calling the method on the superclass only with the advertised arguments. Thanks bartvde for catching this (see #3367)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@12111 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
ahocevar
2011-06-20 11:08:18 +00:00
parent 30fc6ecd52
commit c75523f432
+1 -1
View File
@@ -227,7 +227,7 @@ OpenLayers.Format.GML.Base = OpenLayers.Class(OpenLayers.Format.XML, {
this.featureNS = node.namespaceURI;
this.autoConfig = true;
}
return OpenLayers.Format.XML.prototype.readNode.apply(this, arguments);
return OpenLayers.Format.XML.prototype.readNode.apply(this, [node, obj]);
},
/**