[REQ] Admin CP Mod

This mod will let you view your forum in either a new window/tab (depending on your browser) or you can view it in the window that content is displayed in your AdminCP!

At the top where it shows 'Forum Home | Log Out' It will now show 'Forum Home (New Tab) | Log Out'

In /admincp/index.php find:

PHP:
<a href="../<?php echo $vbulletin->options['forumhome']; ?>.php<?php echo $vbulletin->session->vars['sessionurl_q']; ?>" target="_blank"><?php echo $vbphrase['forum_home_page']; ?></a>
And replace it with:

PHP:
<a href="../<?php echo $vbulletin->options['forumhome']; ?>.php<?php echo $vbulletin->session->vars['sessionurl_q']; ?>" target=""><?php echo $vbphrase['forum_home_page']; ?></a>
            (
            <a href="../<?php echo $vbulletin->options['forumhome']; ?>.php<?php echo $vbulletin->session->vars['sessionurl_q']; ?>" target="new">New Tab</a>
            )
 
Back
Top