From 7dbd9296001220131d31d5aa7928e9feb75f3a96 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Fri, 4 Apr 2025 17:29:14 +0200 Subject: [PATCH] CSS: Link logo --- adminer/include/adminer.inc.php | 4 ++-- editor/include/adminer.inc.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/adminer/include/adminer.inc.php b/adminer/include/adminer.inc.php index 86bb8f09..aaceecef 100644 --- a/adminer/include/adminer.inc.php +++ b/adminer/include/adminer.inc.php @@ -12,7 +12,7 @@ class Adminer { * @return string HTML code */ function name(): string { - return "Adminer"; + return "Adminer"; } /** Connection parameters @@ -933,7 +933,7 @@ class Adminer { * @param string $missing can be "auth" if there is no database connection, "db" if there is no database selected, "ns" with invalid schema */ function navigation(string $missing): void { - echo "

" . adminer()->name() . " " . VERSION; + echo "

" . adminer()->name() . " " . VERSION; $new_version = $_COOKIE["adminer_version"]; echo " " . (version_compare(VERSION, $new_version) < 0 ? h($new_version) : "") . ""; echo "

\n"; diff --git a/editor/include/adminer.inc.php b/editor/include/adminer.inc.php index 03e5ed5f..e7653202 100644 --- a/editor/include/adminer.inc.php +++ b/editor/include/adminer.inc.php @@ -7,7 +7,7 @@ class Adminer { private $values = array(); function name() { - return "" . lang('Editor') . ""; + return "" . lang('Editor') . ""; } //! driver, ns @@ -545,7 +545,7 @@ ORDER BY ORDINAL_POSITION", null, "") as $row } function navigation($missing) { - echo "

" . adminer()->name() . " " . VERSION; + echo "

" . adminer()->name() . " " . VERSION; $new_version = $_COOKIE["adminer_version"]; echo " " . (version_compare(VERSION, $new_version) < 0 ? h($new_version) : "") . ""; echo "

\n";