Increase default select limit to 50

This commit is contained in:
Jakub Vrana 2013-04-15 14:45:49 -07:00
parent 8cce005b70
commit 285afc202a
3 changed files with 4 additions and 3 deletions

View file

@ -447,7 +447,7 @@ username.form['auth[driver]'].onchange();
* @return string expression to use in LIMIT, will be escaped
*/
function selectLimitProcess() {
return (isset($_GET["limit"]) ? $_GET["limit"] : "30");
return (isset($_GET["limit"]) ? $_GET["limit"] : "50");
}
/** Process length box in select

View file

@ -1,5 +1,6 @@
Adminer 3.6.4-dev:
Display pagination on a fixed position
Increase default select limit to 50
Display SQL edit form on Ctrl+click on the select query
Recover original view, trigger, routine if creating fails
Clear column name after resetting search (bug #3601200)

View file

@ -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() {