Quote:
Originally Posted by The Realist
Yes and it takes me back to the main front page.
|
ok these are the file edits you need to make
in admincp/index.php find
PHP Code:
$printhr = false;
if (can_administer('canadminstyles'))
{
$printhr = true;
construct_nav_option($vbphrase['style_manager'], 'template.php?do=modify', '<br />');
and add above that
PHP Code:
// +++ MAF
construct_nav_option("Automated Thread Settings", 'options.php?dogroup=maf', '<br />');
construct_nav_option("Rate Applications", '../' . $modcpdir . 'maf_rateapp.php?do=list', '<br />');
construct_nav_option("Delete Applications", 'maf_delapp.php?do=del', '<br />');
construct_nav_group("Moderator Applicants", '<hr />');
// --- MAF
now in the modcp/index.php find
PHP Code:
// *************************************************
if (can_moderate(0, 'canannounce'))
{
construct_nav_option($vbphrase['add_new_announcement'], 'announcement.php?do=add\');
and add above that
PHP Code:
// +++ MAF
construct_nav_option("Rate Applications", '../' . $modcpdir . '/maf_rateapp.php?do=list', '<br />');
construct_nav_group("Moderator Applicants", '<hr />');
// --- MAF
that's it