dev/core#2348 fix unreleased regression
authoreileen <emcnaughton@wikimedia.org>
Mon, 1 Feb 2021 05:02:04 +0000 (18:02 +1300)
committereileen <emcnaughton@wikimedia.org>
Mon, 1 Feb 2021 05:03:07 +0000 (18:03 +1300)
CRM/Event/Import/Parser/Participant.php

index 3bb21269c1c4559b9d38d5236ffec69d268abbd8..6057b9a82c6bf8d1de6cd7fd8b64e9551d899087 100644 (file)
@@ -626,13 +626,15 @@ class CRM_Event_Import_Parser_Participant extends CRM_Event_Import_Parser {
   }
 
   /**
-   * @deprecated - this is part of the import parser not the API & needs to be moved on out
-   *
    * @param array $params
    * @param $onDuplicate
    *
    * @return array|bool
    *   <type>
+   * @throws \CiviCRM_API3_Exception
+   * @deprecated - this is part of the import parser not the API & needs to be
+   *   moved on out
+   *
    */
   protected function deprecated_create_participant_formatted($params, $onDuplicate) {
     if ($onDuplicate != CRM_Import_Parser::DUPLICATE_NOCHECK) {
@@ -642,7 +644,7 @@ class CRM_Event_Import_Parser_Participant extends CRM_Event_Import_Parser {
         return $error;
       }
     }
-    return civicrm_api3_participant_create($params);
+    return civicrm_api3('Participant', 'create', $params);
   }
 
 }