Skip to content

Commit

Permalink
fix unreplaced template vars when using legacy installer
Browse files Browse the repository at this point in the history
  • Loading branch information
demeritcowboy committed Oct 1, 2021
1 parent 9d6c81e commit 1ad0d4e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions install/civicrm.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 1ad0d4e

Please sign in to comment.