From 2057c8cc53e1d16e6f7851532f84a9f9e8ed49b8 Mon Sep 17 00:00:00 2001 From: demeritcowboy Date: Fri, 22 Oct 2021 16:25:59 -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 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(); -- 2.25.1