Changeset 2811
- Timestamp:
- 03/17/07 16:06:26 (2 years ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Layer/WFS.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Layer/WFS.js
r2805 r2811 284 284 var response = request.responseText; 285 285 if (response.indexOf('SUCCESS') != -1) { 286 this. report('WFS Transaction: SUCCESS', response);286 this.commitReport('WFS Transaction: SUCCESS', response); 287 287 288 288 for(var i = 0; i < this.features.length; i++) { … … 293 293 } else if (response.indexOf('FAILED') != -1 || 294 294 response.indexOf('Exception') != -1) { 295 this. report('WFS Transaction: FAILED', response);295 this.commitReport('WFS Transaction: FAILED', response); 296 296 } 297 297 },
