Separate action links by | for more clarity

This commit is contained in:
Lionel Laffineur 2023-07-12 00:13:45 +02:00
parent fdae5a9f4f
commit 016bfa1408

View file

@ -192,6 +192,9 @@ class Adminer {
}
$name = $tableStatus["Name"];
foreach ($links as $key => $val) {
if ($key !== array_key_first($links)) {
echo "|";
}
echo " <a href='" . h(ME) . "$key=" . urlencode($name) . ($key == "edit" ? $set : "") . "'" . bold(isset($_GET[$key])) . ">$val</a>";
}
echo doc_link(array($jush => $driver->tableHelp($name)), "?");