1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-21 21:55:43 +02:00

Shortcut for database privileges

This commit is contained in:
Jakub Vrana
2011-06-03 13:50:20 +02:00
parent 98e410f42d
commit 16a72b4521
4 changed files with 4 additions and 2 deletions

View File

@@ -721,6 +721,7 @@ DROP PROCEDURE adminer_alter;
echo '<p>' . ($_GET["ns"] == "" ? '<a href="' . h(ME) . 'database=">' . lang('Alter database') . "</a>\n" : "");
echo (support("scheme") ? "<a href='" . h(ME) . "scheme='>" . ($_GET["ns"] != "" ? lang('Alter schema') : lang('Create schema')) . "</a>\n" : "");
echo '<a href="' . h(ME) . 'schema=">' . lang('Database schema') . "</a>\n";
echo (support("privileges") ? "<a href='" . h(ME) . "privileges='>" . lang('Privileges') . "</a>\n" : "");
return true;
}