From 1ad0d4e279c0dc8766c8cbeb91581d62e8818d8a Mon Sep 17 00:00:00 2001 From: demeritcowboy Date: Fri, 1 Oct 2021 15:34:08 -0400 Subject: [PATCH] fix unreplaced template vars when using legacy installer --- install/civicrm.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install/civicrm.php b/install/civicrm.php index 2f895d550dbc..5179735d0825 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();