Merge pull request #12114 from jitendrapurohit/membership-2
[civicrm-core.git] / api / v3 / LineItem.php
index 4efee367639fac585bd94fa470913972209ad471..bb1ab79762f0fa65dc55b6c9af01dad3084200fc 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.7                                                |
+ | CiviCRM version 5                                                  |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2017                                |
  +--------------------------------------------------------------------+
@@ -48,7 +48,7 @@ function civicrm_api3_line_item_create($params) {
   // do the work, and it should be in a tighter function. The below function is  not really
   // readable because it is handling contribution and line item together.
   $params = CRM_Contribute_BAO_Contribution::checkTaxAmount($params, TRUE);
-  return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
+  return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'LineItem');
 }
 
 /**