Vincent]Just wondering but wouldn't it make more sense to use
PHP Code:
if ($bbuserinfo['groupid']!=1)
{
eval("\$unreg_navbar = \"".gettemplate("unreg_navbar")."\";");
}
else {
eval("\$loggedin_navbar = \"".gettemplate("loggedin_navbar")."\";");
}
than
PHP Code:
if ($bbuserinfo['userid']<1)
{
eval("\$unreg_navbar = \"".gettemplate("unreg_navbar")."\";");
}
else {
eval("\$loggedin_navbar = \"".gettemplate("loggedin_navbar")."\";");
}
Works both way but most people would have used the first one, I wouldn't have even thought about using it that way lol btw nice hack