Blog
Documentation
Book a Demo
toggle menu
Categories
Discussions
Activity
Best Of...
Sign In
Sign In
Categories
Discussions
Activity
Best Of...
Sign In
×
Home
›
Vanilla 2.0 - 2.8
Discussion
Shows 50 Users no matter what limit is
Author
Date within
1 day
3 days
1 week
2 weeks
1 month
2 months
6 months
1 year
of
Examples: Monday, today, last week, Mar 26, 3/26/04
Search
Shows 50 Users no matter what limit is
glensj
October 2010
edited October 2010
in
Vanilla 2.0 - 2.8
Thanks for this - I miss the V1 addon but am hopeful. Shows 50 users no matter what I do...
0
Comments
ellieroepken
November 2010
I'm not able to reproduce this. What version of Vanilla are you running?
0
prabhavathi
August 2011
You need to modify the coding in class.userlistmodule.php. It is very simple only. I don't know whether I can release the next version of this addon.
0
prabhavathi
August 2011
$this->Users = $SQL
->Select($Select)
->From($From)
->Join('UserRole r','u.UserID = r.UserID')
->Where($Where)
->Limit($Limit)
->Get();
The query should be like this. I was having problem in thumbnails too.
0
Sign In
or
Register
to comment.
Comments
->Select($Select)
->From($From)
->Join('UserRole r','u.UserID = r.UserID')
->Where($Where)
->Limit($Limit)
->Get();
The query should be like this. I was having problem in thumbnails too.