Reduce the Max amount of Records per page to 100 instead of 500 to prevent performance issues

This commit is contained in:
johnnyq 2025-01-22 11:22:09 -05:00
parent 679291217d
commit 823c9eb030
1 changed files with 0 additions and 1 deletions

View File

@ -26,7 +26,6 @@ if ($total_found_rows > 5) {
<option <?php if ($user_config_records_per_page == 20) { echo "selected"; } ?> >20</option>
<option <?php if ($user_config_records_per_page == 50) { echo "selected"; } ?> >50</option>
<option <?php if ($user_config_records_per_page == 100) { echo "selected"; } ?> >100</option>
<option <?php if ($user_config_records_per_page == 500) { echo "selected"; } ?> >500</option>
</select>
</form>
</div>