]> git.joonet.de Git - adminer.git/commitdiff
Title for select data link
authortiso <github@tiso.sk>
Tue, 26 Jan 2021 23:30:44 +0000 (00:30 +0100)
committerJakub Vrana <jakub@vrana.cz>
Sun, 7 Feb 2021 10:00:35 +0000 (11:00 +0100)
adminer/include/adminer.inc.php

index 500e4eaab4f4f1ed417008b99c8dd0580e4ac343..47a5b45759e4b9d177830e32394b4b7af9cf1b27 100644 (file)
@@ -1038,7 +1038,10 @@ bodyLoad('<?php echo (is_object($connection) ? preg_replace('~^(\d\.?\d).*~s', '
                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"))