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

Fixes - 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

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