mirror of
https://github.com/vrana/adminer.git
synced 2025-08-24 23:16:15 +02:00
Always display all drivers (bug #3097666)
This commit is contained in:
@@ -5,13 +5,10 @@
|
||||
* @author Jakub Vrana
|
||||
*/
|
||||
|
||||
$possible_drivers[] = "SQLSRV";
|
||||
$possible_drivers[] = "MSSQL";
|
||||
if (extension_loaded("sqlsrv") || extension_loaded("mssql")) {
|
||||
$drivers["mssql"] = "MS SQL";
|
||||
}
|
||||
$drivers["mssql"] = "MS SQL";
|
||||
|
||||
if (isset($_GET["mssql"])) {
|
||||
$possible_drivers = array("SQLSRV", "MSSQL");
|
||||
define("DRIVER", "mssql");
|
||||
if (extension_loaded("sqlsrv")) {
|
||||
class Min_DB {
|
||||
|
Reference in New Issue
Block a user