
Rawly wrote: In fact! Here it is now!
http://www.jrawly.co.uk/stuff/staff.txt
replace your current staff.php with this one![]()
Hawaiian Dude wrote:Rawly wrote:In fact! Here it is now!
http://www.jrawly.co.uk/stuff/staff.txt
replace your current staff.php with this one![]()
I have it on my site but it show the Super Moderator under the Moderators
How can I change this?
I have it on my site but it show the Super Moderator under the Moderators
How can I change this?
Code: Select all
$sql = "SELECT * FROM " . USERS_TABLE . " WHERE user_level !='0' ORDER BY user_level";
Code: Select all
you need to edit your constants.php
FIND -----
define('USER', 0);
define('ADMIN', 1);
define('MOD', 2);
define('LESS_ADMIN', 3);
REPLACE WITH
define('USER', 0);
define('ADMIN', 1);
define('LESS_ADMIN', 2);
define('MOD', 3);