Export dates from SK Download Spreadsheet in SQL format
authorlarssandergreen <lars@wildsight.ca>
Thu, 18 May 2023 00:53:10 +0000 (18:53 -0600)
committerlarssandergreen <lars@wildsight.ca>
Thu, 18 May 2023 00:53:10 +0000 (18:53 -0600)
ext/search_kit/Civi/Api4/Action/SearchDisplay/AbstractRunAction.php

index e61ae577f1caf3a5d40478d3abd73426202f2b65..3c467e11f57e06b536281b83eca4a654a3934580 100644 (file)
@@ -766,9 +766,9 @@ abstract class AbstractRunAction extends \Civi\Api4\Generic\AbstractAction {
    */
   protected function formatViewValue($key, $rawValue, $data, $dataType) {
     if (is_array($rawValue)) {
-      return array_map(function($val) use ($key, $data) {
-        return $this->formatViewValue($key, $val, $data);
-      }, $rawValue, $dataType);
+      return array_map(function($val) use ($key, $data, $dataType) {
+        return $this->formatViewValue($key, $val, $data, $dataType);
+      }, $rawValue);
     }
 
     $formatted = $rawValue;