mirror of
https://github.com/vrana/adminer.git
synced 2025-08-08 15:47:00 +02:00
PostgreSQL: Include inherited tables in table_status (bug #1031)
This commit is contained in:
@@ -36,7 +36,7 @@ class AdminerMenuLinks extends Adminer\Plugin {
|
||||
foreach ($tables as $table => $status) {
|
||||
$table = "$table"; // do not highlight "0" as active everywhere
|
||||
$name = Adminer\adminer()->tableName($status);
|
||||
if ($name != "") {
|
||||
if ($name != "" && !$status["inherited"]) {
|
||||
echo '<li>';
|
||||
if (!$menu) {
|
||||
echo '<a href="' . Adminer\h(Adminer\ME) . 'select=' . urlencode($table) . '"'
|
||||
|
Reference in New Issue
Block a user