DbResourceForm: Fix initial db type selection

refs #11115
This commit is contained in:
Johannes Meyer 2016-05-27 15:42:16 +02:00
parent 87e774cb88
commit 5e7817cad2
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ class DbResourceForm extends Form
$dbChoice = key($dbChoices); $dbChoice = key($dbChoices);
if ($dbChoice === 'pgsql') { if ($dbChoice === 'pgsql') {
$offerPostgres = true; $offerPostgres = true;
} elseif ($dbChoices === 'mysql') { } elseif ($dbChoice === 'mysql') {
$offerMysql = true; $offerMysql = true;
} }
} }