Fix issue with editor tables list

This commit is contained in:
Lionel Laffineur 2023-11-16 19:43:59 +01:00
parent bf16b4037e
commit 7fdcb922e1

View file

@ -623,8 +623,10 @@ qsl('div').onclick = whisperClick;", "")
if (isset($row["Engine"]) && $name != "") { // ignore views and tables without name
echo "<a href='" . h(ME) . 'select=' . urlencode($row["Name"]) . "'"
. bold($_GET["select"] == $row["Name"] || $_GET["edit"] == $row["Name"], "select")
. " title='" . lang('Select data') . "'>$name</a>\n"
;
. " title='" . lang('Select data') . "'>$name</a>\n";
echo "<a href='" . h(ME) . 'select=' . urlencode($row["Name"]) . "'"
. bold($_GET["select"] == $row["Name"] || $_GET["edit"] == $row["Name"], "")
. " title='" . lang('Select data') . "'>$name</a>\n";
}
}
echo "</ul>\n";