Skip to content

Commit

Permalink
Merge pull request #12428 from civicrm/5.4
Browse files Browse the repository at this point in the history
5.4
  • Loading branch information
eileenmcnaughton authored Jul 6, 2018
2 parents 51351bd + 5163811 commit ed2c816
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CRM/Upgrade/Incremental/MessageTemplates.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
]
],
];
Expand Down
1 change: 1 addition & 0 deletions CRM/Upgrade/Incremental/php/FiveThree.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}

Expand Down
2 changes: 1 addition & 1 deletion Civi/Core/Container.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down

0 comments on commit ed2c816

Please sign in to comment.