diff --git a/CRM/Upgrade/Incremental/MessageTemplates.php b/CRM/Upgrade/Incremental/MessageTemplates.php index ece6e32606c..e04d4613cd9 100644 --- a/CRM/Upgrade/Incremental/MessageTemplates.php +++ b/CRM/Upgrade/Incremental/MessageTemplates.php @@ -79,6 +79,7 @@ protected function getTemplateUpdates() { ['name' => 'contribution_online_receipt', 'type' => 'html'], ['name' => 'event_online_receipt', 'type' => 'text'], ['name' => 'event_online_receipt', 'type' => 'html'], + ['name' => 'event_online_receipt', 'type' => 'subject'], ] ], ]; diff --git a/CRM/Upgrade/Incremental/php/FiveThree.php b/CRM/Upgrade/Incremental/php/FiveThree.php index 8f022e0699c..f4b75d32db4 100644 --- a/CRM/Upgrade/Incremental/php/FiveThree.php +++ b/CRM/Upgrade/Incremental/php/FiveThree.php @@ -75,6 +75,7 @@ public function setPostUpgradeMessage(&$postUpgradeMessage, $rev) { * @param string $rev */ public function upgrade_5_3_alpha1($rev) { + $this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev); $this->addTask('CRM-19948 - Add created_id column to civicrm_file', 'addFileCreatedIdColumn'); } diff --git a/Civi/Core/Container.php b/Civi/Core/Container.php index bb6ca793196..82dc0614de6 100644 --- a/Civi/Core/Container.php +++ b/Civi/Core/Container.php @@ -65,7 +65,7 @@ public function loadContainer() { // services. Consequently, we assume a minimal service available -- the classloader // has been setup, and civicrm.settings.php is loaded, but nothing else works. - $cacheMode = defined('CIVICRM_CONTAINER_CACHE') ? CIVICRM_CONTAINER_CACHE : 'always'; + $cacheMode = defined('CIVICRM_CONTAINER_CACHE') ? CIVICRM_CONTAINER_CACHE : 'auto'; // In pre-installation environments, don't bother with caching. if (!defined('CIVICRM_TEMPLATE_COMPILEDIR') || !defined('CIVICRM_DSN') || $cacheMode === 'never' || \CRM_Utils_System::isInUpgradeMode()) {