1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 04:32:01 +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

@ -5026,7 +5026,7 @@ TEMPLATE;
$strings = array('time','timestamp','datetime','year','tinyblob','blob',
'mediumblob','longblob','tinytext','mediumtext','longtext','text','date');
$type = strtolower($type);
if(in_array($type,$strings))

View File

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