From f635ab77a35abca8194a0b72a1d26198edd6d37b Mon Sep 17 00:00:00 2001 From: Jamie McClelland Date: Fri, 16 Sep 2016 10:33:04 -0400 Subject: [PATCH] CRM-19376 - ensure is_for_organization data is transferred. In 4.6 -> 4.7 migration the is_for_organization flag from the contribution table was being lost. --- CRM/Upgrade/Incremental/php/FourSeven.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Upgrade/Incremental/php/FourSeven.php b/CRM/Upgrade/Incremental/php/FourSeven.php index 3369802562..6ab19b4ba1 100644 --- a/CRM/Upgrade/Incremental/php/FourSeven.php +++ b/CRM/Upgrade/Incremental/php/FourSeven.php @@ -421,7 +421,7 @@ FROM `civicrm_dashboard_contact` JOIN `civicrm_contact` WHERE civicrm_dashboard_ $ufGroupDAO->module = 'OnBehalf'; $ufGroupDAO->find(TRUE); - $forOrgColums = array(); + $forOrgColums = array('is_for_organization'); if ($domain->locales) { $locales = explode(CRM_Core_DAO::VALUE_SEPARATOR, $domain->locales); foreach ($locales as $locale) { -- 2.25.1