We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2605eb commit 6770062Copy full SHA for 6770062
libraries/DBQbe.class.php
@@ -203,7 +203,10 @@ private function _setSearchParams()
203
// sets row count
204
$rows = PMA_ifSetOr($_REQUEST['rows'], 0, 'numeric');
205
$criteriaRowAdd = PMA_ifSetOr($_REQUEST['criteriaRowAdd'], 0, 'numeric');
206
- $this->_criteria_row_count = max($rows + $criteriaRowAdd, 0);
+ $this->_criteria_row_count = min(
207
+ max($rows + $criteriaRowAdd, 0),
208
+ 100
209
+ );
210
211
$this->_criteriaColumnInsert = PMA_ifSetOr(
212
$_REQUEST['criteriaColumnInsert'],
0 commit comments