No, he is talking about the user title, which I change to temporarily banned or permanently banned. In the file includes/functions_warning.php, find every occurence of:
PHP Code:
$DB_site->query("
UPDATE " . TABLE_PREFIX . "user SET
usergroupid = $usergroupid,
displaygroupid = $usergroupid,
warnings=$warnings,
warning_bans = $number_of_bans,
usertitle = '" . addslashes($title) . "'
WHERE userid = $user[userid]
and replace that with:
PHP Code:
$DB_site->query("
UPDATE " . TABLE_PREFIX . "user SET
usergroupid = $usergroupid,
displaygroupid = $usergroupid,
warnings=$warnings,
warning_bans = $number_of_bans
WHERE userid = $user[userid]
Rgds