? 823994-spatial-feeds-fix.patch
? coder_fixes.patch
? misspelling.patch
? spatial_import/.spatial_import.feeds.ShapefileParser.inc.swp
? spatial_import/tests
Index: spatial_import/spatial_import.feeds.ShapefileParser.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/spatial/spatial_import/spatial_import.feeds.ShapefileParser.inc,v
retrieving revision 1.2
diff -u -p -r1.2 spatial_import.feeds.ShapefileParser.inc
--- spatial_import/spatial_import.feeds.ShapefileParser.inc	9 Feb 2010 00:48:53 -0000	1.2
+++ spatial_import/spatial_import.feeds.ShapefileParser.inc	28 Jul 2010 16:29:16 -0000
@@ -1,4 +1,5 @@
 <?php
+// $Id$
 
 /**
  * Parses a given file as a zipped shapefile.
@@ -10,10 +11,10 @@ class SpatialImportShapefileParser exten
    */
   public function parse(FeedsImportBatch $batch, FeedsSource $source) {
     
-    $options = $source->getConfigFor($this);
+    $options = $this->config;
     
     $filepath = $batch->getFilePath();
-    
+
     $shapefile_data = spatial_import_process_shapefile($filepath, $options['spatial_field_name'], 'wkt');
     
     // Apply titles in lower case.
@@ -106,10 +107,10 @@ class SpatialImportShapefileParser exten
       '#default_value' => $this->config['srid'],
       '#size' => 24,
       '#maxlength' => 24,
-      '#description' => t('Integer represeting the SRID of the uploaded shapefile. If you are unsure, use \'4326\' (lat/lon).')
+      '#description' => t('Integer representing the SRID of the uploaded shapefile. If you are unsure, use \'4326\' (lat/lon).')
     );
     
-    $form['storage'] = array (
+    $form['storage'] = array(
       '#type' => 'hidden',
       '#title' => t('Database Storage'),
       '#value' => 'wkt',
@@ -119,4 +120,4 @@ class SpatialImportShapefileParser exten
   }
 }
 
-?>
\ No newline at end of file
+?>
