I just set this up on my test board:
In forumdisplay.php, find this:
PHP Code:
if ($foruminfo['allowposting']==1) {
ABOVE it, insert this:
PHP Code:
if (ismoderator($forumid, $bbuserinfo[userid])) {
eval("\$forumdisplay[adminoptions] = \"".gettemplate('forumdisplay_adminoptions')."\";");
}
Then move the Admin Options into a new template called forumdisplay_adminoptions
And in showthread.php:
Find this:
PHP Code:
// goto last post
if ($goto=="lastpost") {
ABOVE it, insert this:
PHP Code:
if (ismoderator($threadinfo[forumid], $bbuserinfo[userid])) {
eval("\$showthread[adminoptions] = \"".gettemplate('showthread_adminoptions')."\";");
}
And make a showthread_adminoptions template.
I haven't done it for Users etc but it shouldn't be hard to implement