This is going a little bit above my head?? - Does this mean its a PHP error or a db error?
the script in the profile.php is
// Add user choice to show donor status
if ($bbuserinfo['showdonor'] == '1'){
$checked['showdonor'] == HTML_CHECKED;
}
// End user choice to show donor status
AND THEN LATER IN THE SCRIPT
$DB_site->query("
UPDATE " . TABLE_PREFIX . "user SET
" . $updatestyles . "
showvbcode = $showvbcode,
pmpopup = $pmpopup,
maxposts = $umaxposts,
daysprune = $prunedays,
timezoneoffset = '$timezoneoffset',
startofweek = $startofweek,
languageid = $languageid,
threadedmode = $threadedmode,
autosubscribe = $autosubscribe,
showdonor = $showdonor,
options = " . convert_array_to_bits($options, $_USEROPTIONS) . "
WHERE userid = $bbuserinfo[userid]
");
Thanks
Andy
|