Changeset 7096
- Timestamp:
- 05/08/08 04:18:31 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/camptocamp/unhcr/lib/OpenLayers/Protocol/SQL/GoogleGears.js
r7094 r7096 137 137 this.db.execute("REPLACE INTO " + this.tableName + " (fid, geometry, properties) VALUES (?, ?, ?)", 138 138 this.freezeFeature(feature)); 139 createdFeatures.push(feature );139 createdFeatures.push(feature.clone()); 140 140 } 141 141 … … 170 170 this.db.execute("REPLACE INTO " + this.tableName + " (fid, geometry, properties) VALUES (?, ?, ?)", 171 171 this.freezeFeature(feature)); 172 updatedFeatures.push(feature );172 updatedFeatures.push(feature.clone()); 173 173 } 174 174
