Skip to content

Commit

Permalink
Respect namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
vrana committed May 6, 2010
1 parent b122f65 commit 8878799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adminer/select.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
echo "<form action='' id='form'>\n";
echo "<div style='display: none;'>";
hidden_fields_get();
echo (DB != "" ? '<input type="hidden" name="db" value="' . h(DB) . '">' : ""); // not used in Editor
echo (DB != "" ? '<input type="hidden" name="db" value="' . h(DB) . '">' . (isset($_GET["ns"]) ? '<input type="hidden" name="ns" value="' . h($_GET["ns"]) . '">' : "") : ""); // not used in Editor
echo '<input type="hidden" name="select" value="' . h($TABLE) . '">';
echo "</div>\n";
$adminer->selectColumnsPrint($select, $columns);
Expand Down

0 comments on commit 8878799

Please sign in to comment.