Adding this to your AdminCP in vb2.0.3.
Download and open index.php from your admin dir.
FIND:
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="2" id="navtable">
<?php maketableheader("Options"); ?>
</table>
<a href="options.php?s=<?php echo $session[sessionhash]; ?>&action=options"> Change options </a>
</td></tr>
PLACE UNDER IT THIS:
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="2" id="navtable">
<?php maketableheader("MOD Logs"); ?>
</table>
<a href="modlog.php?s=<?php echo $session[sessionhash]; ?>"> Moderator Logs </a>
</td></tr>
Adding this to your AdminCP in vb2.2.0.
Download and open index.php from your admin dir.
FIND:
makenavoption("vBulletin Options","options.php?t=0","<br>");
PLACE ABOVE IT THIS:
makenavoption("Moderator Logs","modlog.php?","<br />");
Upload index.php to your admin dir.. That's it..
|