jenkins-bot has submitted this change and it was merged. Change subject: Adjust hook in our CiviCRM to reflect name change in upstream QA ......................................................................
Adjust hook in our CiviCRM to reflect name change in upstream QA This hook was adjusted when doing QA to get it into core to be a better fit. I would prefer not to deploy this change until we turn on logging since it requires a co-ordinated change in the civicm directory and we won't have a change to test both in tandem first, but we do need to tidy this up https://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_alterLogTables Bug: T133257 Change-Id: I2b503b7c232a4944b1da4e3ea8bb674253af1db2 --- M sites/all/modules/wmf_civicrm/wmf_civicrm.module 1 file changed, 2 insertions(+), 2 deletions(-) Approvals: Ejegg: Looks good to me, approved jenkins-bot: Verified diff --git a/sites/all/modules/wmf_civicrm/wmf_civicrm.module b/sites/all/modules/wmf_civicrm/wmf_civicrm.module index 3f44ae4..f59b4df 100644 --- a/sites/all/modules/wmf_civicrm/wmf_civicrm.module +++ b/sites/all/modules/wmf_civicrm/wmf_civicrm.module @@ -2243,11 +2243,11 @@ } /** - * Implements hook_logTableSpec(). + * Implements hook_alterLogTables(). * * @param array $logTableSpec */ -function wmf_civicrm_civicrm_logTableSpec(&$logTableSpec) { +function wmf_civicrm_civicrm_alterLogTables(&$logTableSpec) { $logTableSpec['wmf_donor'] = array(); $logTableSpec['wmf_contribution_extra'] = array(); $contactReferences = CRM_Dedupe_Merger::cidRefs(); -- To view, visit https://gerrit.wikimedia.org/r/286379 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I2b503b7c232a4944b1da4e3ea8bb674253af1db2 Gerrit-PatchSet: 2 Gerrit-Project: wikimedia/fundraising/crm Gerrit-Branch: master Gerrit-Owner: Eileen <[email protected]> Gerrit-Reviewer: Awight <[email protected]> Gerrit-Reviewer: Cdentinger <[email protected]> Gerrit-Reviewer: Ejegg <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
