PDA

View Full Version : Two Very Small Hacks Needed


Vigile
03-26-2002, 09:10 PM
Hi guys!

First, I need a hack that will make the edited by lines that MODS and ADMINS do ONLY show up to the other admins/mods?

Second, set the Admins/Mods in the Who's Online on the Home Page bold instead of Italicised, is that a hack too?

Thanks!

Neo
03-26-2002, 09:23 PM
find in index.php


if ($loggedin['usergroupid'] == 6 and $highlightadmin) {
$username = "<b><i>$loggedin[username]</i></b>";
} else if (($mod["$userid"] or $loggedin['usergroupid'] == 5) and $highlightadmin) {
$username = "<b>$loggedin[username]</b>";
} else {
$username = $loggedin['username'];
}


and replace with


if ($loggedin['usergroupid'] == 6 and $highlightadmin) {
$username = "<b>$loggedin[username]</b>";
} else if (($mod["$userid"] or $loggedin['usergroupid'] == 5) and $highlightadmin) {
$username = "<b>$loggedin[username]</b>";
} else {
$username = $loggedin['username'];
}



this if for your second request.