Hm you're right that does work, the only other thing I think it could be is the if statements.
PHP Code:
if ($post['field12'] > 0){
Hm, $post['field12'] (like used in templates) nor $bbuserinfo['field12'] seem to work. :\
--------------- Added [DATE]1341775474[/DATE] at [TIME]1341775474[/TIME] ---------------
What's really strange is if I put:
PHP Code:
if ($post['field12'] > 0){
$result = true;
}
else{
$result = false;
}
$template_hook['postbit_userinfo_right'] .= $result;
It outputs nothing.