1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-10 16:44:17 +02:00

Extensible list of databases

This commit is contained in:
Jakub Vrana
2012-02-23 22:54:48 -08:00
parent 640afc74d7
commit c7f1a6322e
8 changed files with 25 additions and 7 deletions

View File

@@ -208,7 +208,7 @@ if (DB != "") {
echo $views;
} else {
echo "<thead><tr><th style='text-align: left;'><label><input type='checkbox' id='check-databases'" . ($TABLE == "" ? " checked" : "") . " onclick='formCheck(this, /^databases\\[/);'>" . lang('Database') . "</label></thead>\n";
$databases = get_databases();
$databases = $adminer->databases();
if ($databases) {
foreach ($databases as $db) {
if (!information_schema($db)) {