From 39bf7f1ea638302b0b9a6ba0ced4a57b0e166a5f Mon Sep 17 00:00:00 2001 From: Jitendra Purohit Date: Thu, 6 Apr 2017 10:15:26 +0530 Subject: [PATCH] Fix additional issues --- CRM/Admin/Form/ScheduleReminders.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CRM/Admin/Form/ScheduleReminders.php b/CRM/Admin/Form/ScheduleReminders.php index b19baa5d83..d532111159 100644 --- a/CRM/Admin/Form/ScheduleReminders.php +++ b/CRM/Admin/Form/ScheduleReminders.php @@ -497,6 +497,10 @@ class CRM_Admin_Form_ScheduleReminders extends CRM_Admin_Form { $params['absolute_date'] = 'null'; } foreach ($moreKeys as $mkey) { + if ($params['absolute_date'] != 'null' && CRM_Utils_String::startsWith($mkey, 'start_action')) { + $params[$mkey] = 'null'; + continue; + } $params[$mkey] = CRM_Utils_Array::value($mkey, $values); } -- 2.25.1