From 4efde586b41ae17e84f12cc326ebc0b984ac5fc4 Mon Sep 17 00:00:00 2001 From: "deb.monish" Date: Thu, 4 May 2017 13:34:55 +0530 Subject: [PATCH] CRM-20510: Petition signature doesn't show as an activity type for scheduled reminder --- Civi/ActionSchedule/Mapping.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Civi/ActionSchedule/Mapping.php b/Civi/ActionSchedule/Mapping.php index 5f9b1b1518..dd25ee7af3 100644 --- a/Civi/ActionSchedule/Mapping.php +++ b/Civi/ActionSchedule/Mapping.php @@ -286,7 +286,8 @@ abstract class Mapping implements MappingInterface { protected static function getValueLabelMap($name) { static $valueLabelMap = NULL; if ($valueLabelMap === NULL) { - $valueLabelMap['activity_type'] = \CRM_Core_PseudoConstant::activityType(TRUE, TRUE); + // CRM-20510: Include CiviCampaign activity types along with CiviCase IF component is enabled + $valueLabelMap['activity_type'] = \CRM_Core_PseudoConstant::activityType(TRUE, TRUE, FALSE, 'label', TRUE); asort($valueLabelMap['activity_type']); $valueLabelMap['activity_status'] = \CRM_Core_PseudoConstant::activityStatus(); -- 2.25.1