From: demeritcowboy Date: Fri, 22 Oct 2021 20:25:59 +0000 (-0400) Subject: fix unreplaced template vars when using legacy installer X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=2057c8cc53e1d16e6f7851532f84a9f9e8ed49b8;p=civicrm-core.git fix unreplaced template vars when using legacy installer --- diff --git a/install/civicrm.php b/install/civicrm.php index 2f895d550d..5179735d08 100644 --- a/install/civicrm.php +++ b/install/civicrm.php @@ -205,6 +205,10 @@ function civicrm_config(&$config) { 'dbPass' => addslashes($config['mysql']['password']), 'dbHost' => $config['mysql']['server'], 'dbName' => addslashes($config['mysql']['database']), + // These need to be filled manually when using the old installer if an + // SSL connection to MySQL is needed. + 'dbSSL' => '', + 'CMSdbSSL' => '', ); $params['baseURL'] = $config['base_url'] ?? civicrm_cms_base();