Bugfix: use single quotes in config

So that the passwords with a dollar ($) wont be parsed into a variable by PHP
2.0
Wruczek 6 years ago
parent b71ca1848c
commit cf990c8544

@ -88,7 +88,7 @@ EOT;
// Add all variables to the config
foreach ($dbconfig as $key => $value) {
$confarray .= sprintf(' "%s" => "%s",' . PHP_EOL, addcslashes($key, '"'), addcslashes($value, '"'));
$confarray .= sprintf(" '%s' => '%s'," . PHP_EOL, addcslashes($key, '"'), addcslashes($value, '"'));
}
// Remove semicolon and new line from the end

Loading…
Cancel
Save