Skip to content

Commit

Permalink
Title for select data link
Browse files Browse the repository at this point in the history
  • Loading branch information
tiso authored and vrana committed Feb 7, 2021
1 parent 31e28fb commit 7db10e9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion adminer/include/adminer.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,10 @@ function tablesPrint($tables) {
foreach ($tables as $table => $status) {
$name = $this->tableName($status);
if ($name != "") {
echo '<li><a href="' . h(ME) . 'select=' . urlencode($table) . '"' . bold($_GET["select"] == $table || $_GET["edit"] == $table, "select") . ">" . lang('select') . "</a> ";
echo '<li><a href="' . h(ME) . 'select=' . urlencode($table) . '"'
. bold($_GET["select"] == $table || $_GET["edit"] == $table, "select")
. " title='" . lang('Select data') . "'>" . lang('select') . "</a> "
;
echo (support("table") || support("indexes")
? '<a href="' . h(ME) . 'table=' . urlencode($table) . '"'
. bold(in_array($table, array($_GET["table"], $_GET["create"], $_GET["indexes"], $_GET["foreign"], $_GET["trigger"])), (is_view($status) ? "view" : "structure"))
Expand Down

0 comments on commit 7db10e9

Please sign in to comment.