Hard-code mysqli extension in setup DSN

Follow-up to removing extension directive in 2a8962a

Signed-off-by: Ann + J.M <phpMyAdmin@ZweiSteinSoft.de>
This commit is contained in:
Ann + J.M 2014-03-29 20:59:06 +01:00
parent 356626bbaa
commit b870612ba7

View File

@ -410,7 +410,7 @@ class ConfigFile
}
$path = 'Servers/' . $server;
$dsn = $this->getValue("$path/extension") . '://';
$dsn = 'mysqli://';
if ($this->getValue("$path/auth_type") == 'config') {
$dsn .= $this->getValue("$path/user");
if (! $this->getValue("$path/nopassword")) {