Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Member List
This discussion has been closed.
Comments
it looks nice, works and i think a can learn from it and can build my first own extension on the base of MemberList, thank a lot!
a cosmetical thing i changed (after a german translation) is the url of the MemberList Page to users/ and added this line to my .htacces:
RewriteRule ^users/?$ extension.php?PostBackAction=Members [QSA,L]
So it has a friendly url, too
oh i mentioned acciedently that an applicant has the role administrator in the memberslist.
there is another little thing i figured out. the line 87:
$toreturn .= '<a href="account.php?u='.$rows['UserID'].'">'.$rows['Name'].'</a></td>';
is not that good, because on my forum it creates links like void-systems.net/extension/account.php?u=.
I wanted to change that into:
$toreturn .= '<a href="'.$Configuration['WEB_ROOT'].'account/'.$rows['UserID'].'/">'.$rows['Name'].'</a></td>';
but then there is the Notice: Undefined variable: Configuration. why?
have a nice day blueonyx
$toreturn .= '<a href="'.$Context->Configuration['WEB_ROOT'].'account/'.$rows['UserID'].'/">'.$rows['Name'].'</a></td>';