Quote:
Originally Posted by bqleague
I got that fixed, what i want to know is there a way by default it will show all users that have created an account weather they have put in times or anything, instead of choosing somthing from the drop menu?
|
Yeah its possible but I'm not sure what the purpose would be. Thats what the memberlist is for.
Anyway, open timeslips.php and find:
Code:
else if ($_REQUEST['do'] == 'username')
{
$cond.=" WHERE userfield.field55>'".intval($number)."'";
$condition.=" AND userfield.field55>'".intval($number)."'";
$orderby="user.username";
$direction=ASC;
$bracket11="<b>[</b>";
$bracket12="<b>]</b>";
}
Replace it with:
Code:
else if ($_REQUEST['do'] == 'username')
{
$cond.=" WHERE user.userid>'".intval($number)."'";
$condition.="";
$orderby="user.username";
$direction=ASC;
$bracket11="<b>[</b>";
$bracket12="<b>]</b>";
}
Then if you want it to show everyone by default just follow the example posted here (you'll need to use "username" instead of "sixty"):
https://vborg.vbsupport.ru/showpost....5&postcount=54