From aabaf6c7c9ec44394a6cf54aa6b0f54da61072e0 Mon Sep 17 00:00:00 2001 From: monishdeb Date: Thu, 8 Aug 2013 20:40:51 +0530 Subject: [PATCH] CRM-12930 related small fix ---------------------------------------- * CRM-12930: CRM/Core/BAO/MessageTemplates.php does not obey CIVICRM_MAIL_SMARTY http://issues.civicrm.org/jira/browse/CRM-12930 --- CRM/Core/BAO/ActionSchedule.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/BAO/ActionSchedule.php b/CRM/Core/BAO/ActionSchedule.php index 97d296a2e6..838cb88509 100755 --- a/CRM/Core/BAO/ActionSchedule.php +++ b/CRM/Core/BAO/ActionSchedule.php @@ -390,7 +390,7 @@ WHERE cas.entity_value = $id AND $smarty = CRM_Core_Smarty::singleton(); $body_text = $smarty->fetch('string:' . $body_text); $body_html = $smarty->fetch('string:' . $body_html); - $body_subject = $smarty->fetch('string:' . $messageSubject); + $body_subject = $smarty->fetch('string:' . $body_subject); $params = array(array('contact_id', '=', $contactId, 0, 0)); list($contact, $_) = CRM_Contact_BAO_Query::apiQuery($params); -- 2.25.1