Btw, if you just want to add an admin button, what you are doing there is way too complicated. You don't even need to hack any PHP files. Just template edits.
Do this:
Open
phpinclude template,
Add this to the bottom of the template:
PHP Code:
if($bbuserinfo['usergroupid']==6) {
$adminbutton='<a href="admin/index.phps=$session[sessionhash]"><img src="https://vborg.vbsupport.ru/images/top_admin.gif></a>';
} else {
$adminbutton='';
}
Then open
header template:
Add $adminbutton where you want to show up. It will just show up for admins.
Done! No need file hacking or extra templates!