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] |