]> git.joonet.de Git - adminer.git/commitdiff
Titles of links in navigation
authorJakub Vrana <jakub@vrana.cz>
Tue, 9 Aug 2011 11:25:20 +0000 (13:25 +0200)
committerJakub Vrana <jakub@vrana.cz>
Tue, 9 Aug 2011 11:25:20 +0000 (13:25 +0200)
adminer/include/adminer.inc.php
changes.txt
editor/include/adminer.inc.php

index 2f6764600886a6638c705cbf5b8bc08fec9360ee..013dfb257037c56ff853886fcbcea02395094a82 100644 (file)
@@ -818,7 +818,7 @@ DROP PROCEDURE adminer_alter;
                echo "<p id='tables'>\n";
                foreach ($tables as $table => $type) {
                        echo '<a href="' . h(ME) . 'select=' . urlencode($table) . '"' . bold($_GET["select"] == $table) . ">" . lang('select') . "</a> ";
-                       echo '<a href="' . h(ME) . 'table=' . urlencode($table) . '"' . bold($_GET["table"] == $table) . ">" . $this->tableName(array("Name" => $table)) . "</a><br>\n"; //! Adminer::tableName may work with full table status
+                       echo '<a href="' . h(ME) . 'table=' . urlencode($table) . '"' . bold($_GET["table"] == $table) . " title='" . lang('Show structure') . "'>" . $this->tableName(array("Name" => $table)) . "</a><br>\n"; //! Adminer::tableName may work with full table status
                }
        }
        
index 5b9dafcd9f8fced9c1f6730eacaae84fe543397f..5b37ad3fd860ebbca595b416085baedfd93c023d 100644 (file)
@@ -1,5 +1,5 @@
 Adminer 3.3.3-dev:
-Link titles in database overview
+Titles of links in database overview
 Fix trigger export (SQLite)
 Default trigger statement (SQLite, PostgreSQL)
 Remove search by expression (PostgreSQL, MS SQL)
index eab4a96d4da108dc4a1248637066cb9d2d40a077..710785a3ecad2ebc4733df1a8551f1d8f0ed41dd 100644 (file)
@@ -556,7 +556,7 @@ ORDER BY ORDINAL_POSITION", null, "") as $row) { //! requires MySQL 5
                foreach ($tables as $row) {
                        $name = $this->tableName($row);
                        if (isset($row["Engine"]) && $name != "") { // ignore views and tables without name
-                               echo "<a href='" . h(ME) . 'select=' . urlencode($row["Name"]) . "'" . bold($_GET["select"] == $row["Name"]) . ">$name</a><br>\n";
+                               echo "<a href='" . h(ME) . 'select=' . urlencode($row["Name"]) . "'" . bold($_GET["select"] == $row["Name"]) . " title='" . lang('Select data') . "'>$name</a><br>\n";
                        }
                }
        }