mirror of
https://github.com/vrana/adminer.git
synced 2026-03-03 11:01:26 +01:00
PostgreSQL: Fix help link to pg_catalog views
This commit is contained in:
@@ -238,10 +238,10 @@ if (isset($_GET["pgsql"])) {
|
||||
return $this->_conn->warnings();
|
||||
}
|
||||
|
||||
function tableHelp($name) {
|
||||
function tableHelp($name, $is_view = false) {
|
||||
$links = array(
|
||||
"information_schema" => "infoschema",
|
||||
"pg_catalog" => "catalog",
|
||||
"pg_catalog" => ($is_view ? "view" : "catalog"),
|
||||
);
|
||||
$link = $links[$_GET["ns"]];
|
||||
if ($link) {
|
||||
|
||||
Reference in New Issue
Block a user