Login     Sign up
eliminate suspended/pending members from browse
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

file to modify : includes\libs\browse.module.php
function index

line
[code]
$res = sql_query("select * from ".tb()."accounts $where and !hide_me order by $orderby DESC limit $offset, $num_per_page");
[/code]

change into

[code]
$res = sql_query("select * from ".tb()."accounts $where and !hide_me and !disabled order by $orderby DESC limit $offset, $num_per_page");
[/code]

173 months ago