Skip to content

Commit

Permalink
Fix installation process to set database password
Browse files Browse the repository at this point in the history
  • Loading branch information
pierredup committed Sep 6, 2022
1 parent 1223d90 commit 2434587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/InstallBundle/Action/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public function handleForm(Request $request)
'port' => $config['database_port'] ?? null,
'name' => $config['database_name'] ?? null,
'user' => $config['database_user'] ?? null,
'password' => null,
'password' => $config['database_password'] ?? null,
'driver' => $config['database_driver'] ?? null,
]);

Expand Down

0 comments on commit 2434587

Please sign in to comment.