Author: david
Date: Tue Jan 10 14:49:18 2012
New Revision: 10633

Log:
Drop redundant check against list of know column names

Modified:
   trunk/lib/task/csvIsaarImportTask.class.php

Modified: trunk/lib/task/csvIsaarImportTask.class.php
==============================================================================
--- trunk/lib/task/csvIsaarImportTask.class.php Tue Jan 10 14:48:03 2012        
(r10632)
+++ trunk/lib/task/csvIsaarImportTask.class.php Tue Jan 10 14:49:18 2012        
(r10633)
@@ -92,10 +92,7 @@
 
       foreach (array_combine($header, $row) as $name => $value)
       {
-        if (in_array($name, qtIsaarCsv::$NAMES))
-        {
-          $isaarCsv->__set($name, $value);
-        }
+        $isaarCsv->__set($name, $value);
       }
 
       $isaarCsv->save();

-- 
You received this message because you are subscribed to the Google Groups 
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/qubit-commits?hl=en.

Reply via email to