now you have confused me.....
i don't get what you want, but from what you said before, that code is correct:
PHP Code:
// this is the bit i'm asking about
if (vboptions(guest confession == 1))
{ this will allow guests to confess
if ('confess' && $confession_submit && trim($message) != '' && $bbuserinfo[userid] >= 0)
{ guests can confess
}
}
else
{
if ('confess' && $confession_submit && trim($message) != '' && $bbuserinfo[userid] > 0)
{ members only can confess
}
}
// above is the bit i'm asking about