Non-admin users should not be able to see the userlist !
Logged In: YES user_id=1450769
just open the config.inc.php file and find:
function list_users() { $result = mysql_query("SELECT * ...
change it to function list_users() { if (!is_administrator()) return; $result = mysql_query("SELECT * ...
Log in to post a comment.
Logged In: YES
user_id=1450769
just open the config.inc.php file and find:
function list_users()
{
$result = mysql_query("SELECT * ...
change it to
function list_users()
{
if (!is_administrator()) return;
$result = mysql_query("SELECT * ...