Merge pull request #2674 from deepak-srivastava/CRM-12467-soft-credit-search
[civicrm-core.git] / api / v3 / Generic / Update.php
index 9975de71e57f12354c224f0226771a42cb97d9f2..1c95bcae6a14a942428067b237144afbbe51ae3a 100644 (file)
@@ -1,5 +1,30 @@
 <?php
-// $Id$
+
+/*
+ +--------------------------------------------------------------------+
+ | CiviCRM version 4.4                                                |
+ +--------------------------------------------------------------------+
+ | Copyright CiviCRM LLC (c) 2004-2013                                |
+ +--------------------------------------------------------------------+
+ | This file is a part of CiviCRM.                                    |
+ |                                                                    |
+ | CiviCRM is free software; you can copy, modify, and distribute it  |
+ | under the terms of the GNU Affero General Public License           |
+ | Version 3, 19 November 2007 and the CiviCRM Licensing Exception.   |
+ |                                                                    |
+ | CiviCRM is distributed in the hope that it will be useful, but     |
+ | WITHOUT ANY WARRANTY; without even the implied warranty of         |
+ | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               |
+ | See the GNU Affero General Public License for more details.        |
+ |                                                                    |
+ | You should have received a copy of the GNU Affero General Public   |
+ | License and the CiviCRM Licensing Exception along                  |
+ | with this program; if not, contact CiviCRM LLC                     |
+ | at info[AT]civicrm[DOT]org. If you have questions about the        |
+ | GNU Affero General Public License or the licensing of CiviCRM,     |
+ | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
+ +--------------------------------------------------------------------+
+*/
 
 /**
  * Update function is basically a hack to get around issues listed in
@@ -25,6 +50,12 @@ function civicrm_api3_generic_update($apiRequest) {
   if (!array_key_exists($key_id, $apiRequest['params'])) {
     return $errorFnName("Mandatory parameter missing $key_id");
   }
+  // @fixme
+  // 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']) {