diff --git a/plugins/FeedsCSVParser.inc b/plugins/FeedsCSVParser.inc
index 073a56d..d624981 100644
--- a/plugins/FeedsCSVParser.inc
+++ b/plugins/FeedsCSVParser.inc
@@ -292,8 +292,10 @@ class FeedsCSVParser extends FeedsParser {
       if (strpos($col, $sep) !== FALSE) {
         $col = '"' . str_replace('"', '""', $col) . '"';
       }
-
-      $columns[] = $col;
+      // Prevent columns without headers from being added to the template.
+      if (trim($col) != FALSE) {
+        $columns[] = $col;
+      }
     }
 
     $template_file_details = $this->getTemplateFileDetails($this->config);
