WFS transactions use wrong namespace for Delete. Thanks to Stephen Woodbridge for this fix. r=tschaub (closes #1394)
git-svn-id: http://svn.openlayers.org/trunk/openlayers@6381 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -189,7 +189,7 @@ OpenLayers.Format.WFS = OpenLayers.Class(OpenLayers.Format.GML, {
|
||||
alert(OpenLayers.i18n("noFID"));
|
||||
return false;
|
||||
}
|
||||
var deleteNode = this.createElementNS(this.featureNS, 'wfs:Delete');
|
||||
var deleteNode = this.createElementNS(this.wfsns, 'wfs:Delete');
|
||||
deleteNode.setAttribute("typeName", this.layerName);
|
||||
|
||||
var filterNode = this.createElementNS(this.ogcns, 'ogc:Filter');
|
||||
|
||||
Reference in New Issue
Block a user