
10-03-2004, 05:03 PM
|
|
|
|
Join Date: Jan 2003
Posts: 2,924
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
If you speaking about the link in the ACP, then it supposed to go to forum/modcp/moderate.php. Do this:
In admincp/index.php Look for:
PHP Code:
if (can_administer('canadminthreads'))
{
construct_nav_option($vbphrase['prune'], 'thread.php?do=prune', '|');
construct_nav_option($vbphrase['move'], 'thread.php?do=move', '|');
construct_nav_option($vbphrase['unsubscribe'], 'thread.php?do=unsubscribe', '<br />');
construct_nav_option($vbphrase['strip_poll'], 'thread.php?do=killpoll', '|');
construct_nav_option($vbphrase['who_voted'], 'thread.php?do=votes');
construct_nav_group("$vbphrase[threads] & $vbphrase[posts]");
}
// ***
Under that should be this:
PHP Code:
construct_nav_option($vbphrase['moderate_threads'], "../$modcpdir/moderate.php?do=posts", '<br />');
construct_nav_option($vbphrase['moderate_posts'], "../$modcpdir/moderate.php?do=posts#posts", '<br />');
construct_nav_option($vbphrase['moderate_attachments'], "../$modcpdir/moderate.php?do=attachments", '<br />');
construct_nav_option($vbphrase['moderate_events'], "../$modcpdir/moderate.php?do=events");
construct_nav_group($vbphrase['moderation'], '<hr />', "$df");
// ***
Hope this helps
|