There were some missing \ in the code. I had the same problem. Try this code:
PHP Code:
// members choice voting announce bit
$userstatus = $DB_site->query_first("SELECT * FROM memberschoice WHERE nomname='$bbuserinfo[username]'");
if (empty($userstatus[nomname])) {
$nomination="<smallfont><a href=\"memberschoice.php?s=[sessionhash]\">You have not been nominated for any awards at this time.</a></smallfont>";
} else if ($userstatus[acceptnom]=='No') {
$nomination="<smallfont><b><a href=\"memberschoice.php?s=[sessionhash]\">You have been nominated for an award!</a></b></smallfont>";
} else {
$nomination="<smallfont><a href=\"memberschoice.php?s=[sessionhash]\">Your nomination has been accepted!</A></smallfont>";
}
// members choice announce bit