As in the subject. How to increase a ticket list on 1 page from max 50 to max 100. What file is it?
https://github.com/osTicket/osTicket/blob/develop/include/staff/profile.inc.php#L204
See line 210. for ($i = 5; $i <= 50; $i += 5) {
for ($i = 5; $i <= 50; $i += 5) {
You can change it to be for ($i = 10; $i <= 100; $i += 10) {
for ($i = 10; $i <= 100; $i += 10) {
Which would change the drop down to be every 10 records (instead of 5) and go from 10 to 100.