mirror of
https://github.com/vrana/adminer.git
synced 2025-08-08 23:57:29 +02:00
Always display all drivers (bug #3097666)
This commit is contained in:
@@ -1,11 +1,8 @@
|
||||
<?php
|
||||
$possible_drivers[] = "PgSQL";
|
||||
$possible_drivers[] = "PDO_PgSQL";
|
||||
if (extension_loaded("pgsql") || extension_loaded("pdo_pgsql")) {
|
||||
$drivers["pgsql"] = "PostgreSQL";
|
||||
}
|
||||
$drivers["pgsql"] = "PostgreSQL";
|
||||
|
||||
if (isset($_GET["pgsql"])) {
|
||||
$possible_drivers = array("PgSQL", "PDO_PgSQL");
|
||||
define("DRIVER", "pgsql");
|
||||
if (extension_loaded("pgsql")) {
|
||||
class Min_DB {
|
||||
|
Reference in New Issue
Block a user