Changeset 7113
- Timestamp:
- 05/08/08 17:19:19 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/vector-behavior/lib/OpenLayers/Format/Filter.js
r7107 r7113 60 60 * 61 61 * Returns: 62 * { String} An ogc:Filter elemet string.62 * {Elment} An ogc:Filter element node. 63 63 */ 64 64 write: function(filter, options) { … … 75 75 this.parser = new format(this.options); 76 76 } 77 var root = this.parser.write(sld);78 return OpenLayers.Format.XML.prototype.write.apply(this, [root]);77 return this.parser.write(filter); 78 //return OpenLayers.Format.XML.prototype.write.apply(this, [root]); 79 79 }, 80 80
