Vanilla Forums
Home
Addons
Community
Documentation
Blog
Hosting
Download
Home
»
Questions
Activity
•
Sign In
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Categories
16.1K
Questions
15.6K
Feedback
349
Developers
49
Localization
49
Blog
15
Categories
Recent Discussions
In this Discussion
ellieroepken
November 2010
prabhavathi
August 2011
Who's Online
12
+
10
guests
Shows 50 Users no matter what limit is
glensj
October 2010
in
Questions
This discussion is related to the
User List
addon.
Thanks for this - I miss the V1 addon but am hopeful. Shows 50 users no matter what I do...
Comments
ellieroepken
November 2010
Posts: 82
I'm not able to reproduce this. What version of Vanilla are you running?
prabhavathi
August 2011
Posts: 74
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.
prabhavathi
August 2011
Posts: 74
$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.
Sign In
or
Register
to comment.
Host Your Community With Us
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.