1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-16 11:34:10 +02:00

Allow default order

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@931 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana
2009-07-28 14:23:46 +00:00
parent 07e1ae10f5
commit 988456b2a6

View File

@@ -163,7 +163,7 @@ ORDER BY ORDINAL_POSITION"); //! requires MySQL 5
}
if ($orders) {
echo '<fieldset><legend>' . lang('Sort') . "</legend><div>";
echo "<select name='index_order'>" . optionlist($orders, $_GET["index_order"], true) . "</select>";
echo "<select name='index_order'>" . optionlist(array("" => "") + $orders, $_GET["index_order"], true) . "</select>";
echo "</div></fieldset>\n";
}
}