1
0
mirror of https://github.com/e107inc/e107.git synced 2025-06-10 21:21:03 +02:00

Fixes #4252 - User list limit of 50 was failing.

This commit is contained in:
Cameron
2020-11-02 11:00:48 -08:00
parent 0e98d8d059
commit 05df0716d5
2 changed files with 3 additions and 3 deletions

View File

@ -175,9 +175,9 @@ else
} }
} }
} }
if (vartrue($records) > 30) if (vartrue($records) > 50)
{ {
$records = 30; $records = 50;
} }
if (isset($id)) if (isset($id))