From b92fe58553f882967fc5af7bbf498ebfd3a981cc Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Tue, 9 Aug 2011 13:25:20 +0200 Subject: [PATCH] Titles of links in navigation --- adminer/include/adminer.inc.php | 2 +- changes.txt | 2 +- editor/include/adminer.inc.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/adminer/include/adminer.inc.php b/adminer/include/adminer.inc.php index 2f676460..013dfb25 100644 --- a/adminer/include/adminer.inc.php +++ b/adminer/include/adminer.inc.php @@ -818,7 +818,7 @@ DROP PROCEDURE adminer_alter; echo "

\n"; foreach ($tables as $table => $type) { echo '" . lang('select') . " "; - echo '" . $this->tableName(array("Name" => $table)) . "
\n"; //! Adminer::tableName may work with full table status + echo '" . $this->tableName(array("Name" => $table)) . "
\n"; //! Adminer::tableName may work with full table status } } diff --git a/changes.txt b/changes.txt index 5b9dafcd..5b37ad3f 100644 --- a/changes.txt +++ b/changes.txt @@ -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) diff --git a/editor/include/adminer.inc.php b/editor/include/adminer.inc.php index eab4a96d..710785a3 100644 --- a/editor/include/adminer.inc.php +++ b/editor/include/adminer.inc.php @@ -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 "$name
\n"; + echo "$name
\n"; } } }