Skip to content
Snippets Groups Projects
Unverified Commit 769087e5 authored by Seamus Lee's avatar Seamus Lee Committed by GitHub
Browse files

Merge pull request #14555 from eileenmcnaughton/null

#1047 Fix instance of null contamination
parents 2dfe802e 2b058da6
No related branches found
No related tags found
No related merge requests found
......@@ -5237,7 +5237,7 @@ LEFT JOIN civicrm_contribution on (civicrm_contribution.contact_id = civicrm_co
* @return \CRM_Contribute_BAO_Contribution|null
*/
private static function getOriginalContribution($contributionID) {
return self::getValues(['id' => $contributionID], CRM_Core_DAO::$_nullArray, CRM_Core_DAO::$_nullArray);
return self::getValues(['id' => $contributionID]);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment