Fix typo in config file

Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
Michal Čihař
2015-12-14 13:49:36 +01:00
parent b0a8bc0bec
commit e6ba64cd5f
+1 -1
View File
@@ -18,7 +18,7 @@ if (isset($_ENV['PMA_HOST'])) {
if (isset($_ENV['PMA_PORT'])) {
$cfg['Servers'][$i]['port'] = $_ENV['PMA_PORT'];
}
if (isset($_ENV['PMA_USER']) && isset($_ENV['PMA_PASSWORD']) {
if (isset($_ENV['PMA_USER']) && isset($_ENV['PMA_PASSWORD'])) {
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = $_ENV['PMA_USER'];
$cfg['Servers'][$i]['password'] = $_ENV['PMA_PASSWORD'];