diff --git a/CHANGELOG.md b/CHANGELOG.md index 02f28380..22b67e90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## Adminer dev - Allow specifying operator in search anywhere - Do not order descending in GROUP BY select +- Add section links in database overview - Warn about exceeded max_file_uploads in import - MySQL 5.0-: Do not load partitioning info in alter table (bug #1099) - PostgreSQL: Show structure of inherited tables diff --git a/adminer/include/adminer.inc.php b/adminer/include/adminer.inc.php index 52115ebd..90adda8a 100644 --- a/adminer/include/adminer.inc.php +++ b/adminer/include/adminer.inc.php @@ -962,6 +962,12 @@ class Adminer { echo (support("scheme") ? "" . ($_GET["ns"] != "" ? lang('Alter schema') : lang('Create schema')) . "\n" : ""); echo ($_GET["ns"] !== "" ? '' . lang('Database schema') . "\n" : ""); echo (support("privileges") ? "" . lang('Privileges') . "\n" : ""); + if ($_GET["ns"] !== "") { + echo (support("routine") ? "" . lang('Routines') . "\n" : ""); + echo (support("sequence") ? "" . lang('Sequences') . "\n" : ""); + echo (support("type") ? "" . lang('User types') . "\n" : ""); + echo (support("event") ? "" . lang('Events') . "\n" : ""); + } return true; }