Mmm, isn't this easy?
You just mod admin_forums.php to work for mods: should only be a line of code
Edit: Yup, a simple mod to make it show up on the admin sidebar thing and work for mods
admin_forums.php
Find:
if ($pun_user['g_id'] > PUN_ADMIN)
message($lang_common['No permission']);
Replace with
if ($pun_user['g_id'] > PUN_ADMIN)
message($lang_common['No permission']);
include/common_admin.php
Find:
<?php endif; ?><?php if ($is_admin): ?> <li<?php if ($page == 'forums') echo ' class="isactive"'; ?>><a href="admin_forums.php">Forums</a></li>
Replace with:
<?php endif; ?> <li<?php if ($page == 'forums') echo ' class="isactive"'; ?>><a href="admin_forums.php">Forums</a></li>