Topic: how to remove user list
how to remove user list
i searched it but failed to find please help
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 troubleshooting → how to remove user list
how to remove user list
i searched it but failed to find please help
Define remove
Do you want it hidden for just guests or completely removed?
only moderator and admin can see it
pls help
include/functions.php
FIND
$links[] = '<li id="navuserlist"><a href="userlist.php">'.$lang_common['User list'].'</a>';
REPLACE WITH
if ($pun_user['g_id'] <= PUN_MOD)
$links[] = '<li id="navuserlist"><a href="userlist.php">'.$lang_common['User list'].'</a>';
userlist.php
FIND
if ($pun_user['g_read_board'] == '0')
message($lang_common['No view']);
AFTER, ADD
if ($pun_user['g_id'] > PUN_MOD)
message($lang_common['No permission']);
thanks a lot
here you go!
http://wiki.punres.org/How_to_hide_userlist
PunBB Forums → PunBB 1.2 troubleshooting → how to remove user list
Powered by PunBB, supported by Informer Technologies, Inc.