mirror of https://github.com/itflow-org/itflow
Add option to filter footer 500 records per page
This commit is contained in:
parent
a5aae51b1a
commit
56c7c76ac6
|
|
@ -26,6 +26,7 @@ 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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue