From 05df0716d518491815c8410cda277c4717733661 Mon Sep 17 00:00:00 2001 From: Cameron Date: Mon, 2 Nov 2020 11:00:48 -0800 Subject: [PATCH] Fixes #4252 - User list limit of 50 was failing. --- e107_admin/plugin.php | 2 +- user.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/e107_admin/plugin.php b/e107_admin/plugin.php index 03905c4b6..5b9c51d7a 100755 --- a/e107_admin/plugin.php +++ b/e107_admin/plugin.php @@ -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)) diff --git a/user.php b/user.php index ded29c37b..afb090ce3 100644 --- a/user.php +++ b/user.php @@ -175,9 +175,9 @@ else } } } -if (vartrue($records) > 30) +if (vartrue($records) > 50) { - $records = 30; + $records = 50; } if (isset($id))