mirror of
https://github.com/vrana/adminer.git
synced 2025-08-16 03:24:01 +02:00
Increase default select limit to 50
This commit is contained in:
@@ -272,7 +272,7 @@ ORDER BY ORDINAL_POSITION", null, "") as $row) { //! requires MySQL 5
|
||||
|
||||
function selectLimitPrint($limit) {
|
||||
echo "<fieldset><legend>" . lang('Limit') . "</legend><div>"; // <div> for easy styling
|
||||
echo html_select("limit", array("", "30", "100"), $limit);
|
||||
echo html_select("limit", array("", "50", "100"), $limit);
|
||||
echo "</div></fieldset>\n";
|
||||
}
|
||||
|
||||
@@ -374,7 +374,7 @@ ORDER BY ORDINAL_POSITION", null, "") as $row) { //! requires MySQL 5
|
||||
}
|
||||
|
||||
function selectLimitProcess() {
|
||||
return (isset($_GET["limit"]) ? $_GET["limit"] : "30");
|
||||
return (isset($_GET["limit"]) ? $_GET["limit"] : "50");
|
||||
}
|
||||
|
||||
function selectLengthProcess() {
|
||||
|
Reference in New Issue
Block a user