Skip to content

Commit

Permalink
Remove rogue single quote from links generated by SimpleMenu plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianbj committed Apr 18, 2024
1 parent 4c8493b commit 54f0ee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panels/Adminer/plugins/AdminerSimpleMenu.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function tablesPrint($tables)

echo "<li data-table-name='$name'>";
if ($this->preferSelect || support("table") || support("indexes")) {
echo '<a href="' . h(ME) . $action . '=' . urlencode($table) . '"' . bold($active, (is_view($status) ? "view" : "")) . "' data-link='main'>$name</a>";
echo '<a href="' . h(ME) . $action . '=' . urlencode($table) . '"' . bold($active, (is_view($status) ? "view" : "")) . " data-link='main'>$name</a>";
} else {
echo "<span data-link='main'>$name</span>";
}
Expand Down

0 comments on commit 54f0ee2

Please sign in to comment.