fixes for regression on contribution.update
authoreileen <eileen@fuzion.co.nz>
Mon, 18 Mar 2013 19:32:02 +0000 (08:32 +1300)
committereileen <eileen@fuzion.co.nz>
Mon, 18 Mar 2013 19:32:02 +0000 (08:32 +1300)
api/v3/Generic/Update.php

index 9975de71e57f12354c224f0226771a42cb97d9f2..1950e966dd376f1c688e1d6cdfcf8fd5995d67a4 100644 (file)
@@ -25,6 +25,11 @@ function civicrm_api3_generic_update($apiRequest) {
   if (!array_key_exists($key_id, $apiRequest['params'])) {
     return $errorFnName("Mandatory parameter missing $key_id");
   }
+  // tests show that contribution works better with create
+  // this is horrible but to make it work we'll just handle it separately
+  if(strtolower($apiRequest['entity']) == 'contribution'){
+    return civicrm_api($apiRequest['entity'], 'create', $apiRequest['params']);
+  }
   $seek = array($key_id => $apiRequest['params'][$key_id], 'version' => $apiRequest['version']);
   $existing = civicrm_api($apiRequest['entity'], 'get', $seek);
   if ($existing['is_error']) {