From 5bc8c2e21beb69ecce1ff9452f71e724fb67af50 Mon Sep 17 00:00:00 2001 From: DemeritCowboy Date: Mon, 19 Aug 2019 14:57:47 -0400 Subject: [PATCH] fix enotice --- CRM/Core/Form/RecurringEntity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/Form/RecurringEntity.php b/CRM/Core/Form/RecurringEntity.php index 880c4f0b62..4e44aa0d09 100644 --- a/CRM/Core/Form/RecurringEntity.php +++ b/CRM/Core/Form/RecurringEntity.php @@ -343,7 +343,7 @@ class CRM_Core_Form_RecurringEntity { $params['entity_id'] = self::$_entityId; } //Process this function only when you get this variable - if ($params['allowRepeatConfigToSubmit'] == 1) { + if (CRM_Utils_Array::value('allowRepeatConfigToSubmit', $params) == 1) { if (!empty($params['entity_table']) && !empty($params['entity_id']) && $type) { $params['used_for'] = $type; if (empty($params['parent_entity_id'])) { -- 2.25.1