Finexes
Well-known member
Hey guys,
I'm trying to get the number of users with XenForo's finder, but it always returns 0:
Although the same query returns the correct amount in phpMyAdmin:
What am I doing wrong?
I'm trying to get the number of users with XenForo's finder, but it always returns 0:
PHP:
$finder = \XF::finder('XF:User');
$countUsers = $finder->where('custom_title', 'LIKE', 'String%')->total();
// returns 0
Although the same query returns the correct amount in phpMyAdmin:
SQL:
SELECT * FROM `xf_user` WHERE `custom_title` LIKE 'String%';
// returns 3 results
What am I doing wrong?