Fix issue with editor tables list
This commit is contained in:
parent
bf16b4037e
commit
7fdcb922e1
1 changed files with 4 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Reference in a new issue