From 06a2d87e55a5c33e2397fb08ce3ad05dacec408b Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Thu, 26 Jun 2014 12:59:04 +0200 Subject: [PATCH] Add CSS classes to navigation --- adminer/include/adminer.inc.php | 6 ++++-- editor/include/adminer.inc.php | 5 ++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/adminer/include/adminer.inc.php b/adminer/include/adminer.inc.php index 916b679a..2406334e 100644 --- a/adminer/include/adminer.inc.php +++ b/adminer/include/adminer.inc.php @@ -883,10 +883,12 @@ bodyLoad('server_info, function tablesPrint($tables) { echo "

\n"; foreach ($tables as $table => $status) { - echo '" . lang('select') . " "; + echo '" . lang('select') . " "; $name = $this->tableName($status); echo (support("table") || support("indexes") - ? '$name" + ? '$name" : "$name" ) . "
\n"; } diff --git a/editor/include/adminer.inc.php b/editor/include/adminer.inc.php index a0e0a09e..ef3b0c55 100644 --- a/editor/include/adminer.inc.php +++ b/editor/include/adminer.inc.php @@ -585,7 +585,10 @@ 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" + ; } } }