This commit is contained in:
James Cole 2015-07-30 21:32:58 +02:00
parent e211c9812e
commit 244b90b1d4

View File

@ -124,7 +124,7 @@ class Importer
*/
protected function parseRow($index)
{
return (($this->data->hasHeaders() && $index > 1) || !$this->data->hasHeaders());
return (($this->data->hasHeaders() && $index >= 1) || !$this->data->hasHeaders());
}
/**