INFRA-132 - CRM/Import - Misc
authorTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 22:56:56 +0000 (14:56 -0800)
committerTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 23:07:48 +0000 (15:07 -0800)
CRM/Import/DataSource/CSV.php

index a489006f2bd9f763e6985bd066fb398982e91f0d..854a26891c449d03b02acbd022042dc25c2b50a8 100644 (file)
@@ -116,7 +116,8 @@ class CRM_Import_DataSource_CSV extends CRM_Import_DataSource {
    *
    * @return string  name of the created table
    */
-  private static function _CsvToTable(&$db,
+  private static function _CsvToTable(
+    &$db,
     $file,
     $headers = FALSE,
     $table = NULL,
@@ -175,12 +176,14 @@ class CRM_Import_DataSource_CSV extends CRM_Import_DataSource {
       }
 
       // CRM-4881: we need to quote column names, as they may be MySQL reserved words
-      foreach ($columns as & $column) { $column = "`$column`";
+      foreach ($columns as & $column) {
+        $column = "`$column`";
       }
     }
     else {
       $columns = array();
-      foreach ($firstrow as $i => $_) { $columns[] = "col_$i";
+      foreach ($firstrow as $i => $_) {
+        $columns[] = "col_$i";
       }
     }