]> git.joonet.de Git - adminer.git/commitdiff
Use Unicode
authorJakub Vrana <jakub@vrana.cz>
Tue, 18 Feb 2025 07:43:51 +0000 (08:43 +0100)
committerJakub Vrana <jakub@vrana.cz>
Wed, 19 Feb 2025 10:16:45 +0000 (11:16 +0100)
adminer/include/design.inc.php

index e02fbc878b662e98e10c63a89f4aac1b058ac9ed..228db7b21534038a6637dd8accb665595a334484 100644 (file)
@@ -68,25 +68,25 @@ var thousandsSeparator = '<?php echo js_escape(lang(',')); ?>';
 <?php
        if ($breadcrumb !== null) {
                $link = substr(preg_replace('~\b(username|db|ns)=[^&]*&~', '', ME), 0, -1);
-               echo '<p id="breadcrumb"><a href="' . h($link ? $link : ".") . '">' . $drivers[DRIVER] . '</a> &raquo; ';
+               echo '<p id="breadcrumb"><a href="' . h($link ? $link : ".") . '">' . $drivers[DRIVER] . '</a> » ';
                $link = substr(preg_replace('~\b(db|ns)=[^&]*&~', '', ME), 0, -1);
                $server = $adminer->serverName(SERVER);
                $server = ($server != "" ? $server : lang('Server'));
                if ($breadcrumb === false) {
                        echo "$server\n";
                } else {
-                       echo "<a href='" . h($link) . "' accesskey='1' title='Alt+Shift+1'>$server</a> &raquo; ";
+                       echo "<a href='" . h($link) . "' accesskey='1' title='Alt+Shift+1'>$server</a> » ";
                        if ($_GET["ns"] != "" || (DB != "" && is_array($breadcrumb))) {
-                               echo '<a href="' . h($link . "&db=" . urlencode(DB) . (support("scheme") ? "&ns=" : "")) . '">' . h(DB) . '</a> &raquo; ';
+                               echo '<a href="' . h($link . "&db=" . urlencode(DB) . (support("scheme") ? "&ns=" : "")) . '">' . h(DB) . '</a> » ';
                        }
                        if (is_array($breadcrumb)) {
                                if ($_GET["ns"] != "") {
-                                       echo '<a href="' . h(substr(ME, 0, -1)) . '">' . h($_GET["ns"]) . '</a> &raquo; ';
+                                       echo '<a href="' . h(substr(ME, 0, -1)) . '">' . h($_GET["ns"]) . '</a> » ';
                                }
                                foreach ($breadcrumb as $key => $val) {
                                        $desc = (is_array($val) ? $val[1] : h($val));
                                        if ($desc != "") {
-                                               echo "<a href='" . h(ME . "$key=") . urlencode(is_array($val) ? $val[0] : $val) . "'>$desc</a> &raquo; ";
+                                               echo "<a href='" . h(ME . "$key=") . urlencode(is_array($val) ? $val[0] : $val) . "'>$desc</a> » ";
                                        }
                                }
                        }