Skip to content

Commit

Permalink
Dev: Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Dec 7, 2017
1 parent b10b5ad commit 0ae2622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/admin/import_helper.php
Expand Up @@ -1726,7 +1726,7 @@ function CSVImportResponses($sFullFilePath, $iSurveyId, $aOptions = array())
LimeExpressionManager::SetDirtyFlag(); // Be sure survey EM code are up to date
$aLemFieldNames = LimeExpressionManager::getLEMqcode2sgqa($iSurveyId);
$aKeyForFieldNames = array(); // An array assicated each fieldname with corresponding responses key
if (empty($aCsvHeader=) {
if (empty($aCsvHeader)) {
$CSVImportResult['errors'][] = gT("File seems empty or has only one line");
return $CSVImportResult;
}
Expand Down

0 comments on commit 0ae2622

Please sign in to comment.