These fields are added to MySQL table users (by the installer of course).
'warnings' 'warning_level' 'warning_bans' 'alerts' 'warn_notes'
And this is (oddly?) required in plugin manager AWS: Setup UserDM to get it working for adding new members. I say oddly, because I fail to see the logic of warning stuff for
registering new members. I'ld expect that the SQL server just uses default values when there's no info supplied by the board.
Code:
$this->validfields['alerts'] = array(TYPE_INT, REQ_NO);
$this->validfields['warnings'] = array(TYPE_INT, REQ_NO);
$this->validfields['warning_level'] = array(TYPE_INT, REQ_NO);
$this->validfields['warning_bans'] = array(TYPE_INT, REQ_NO);
Why not
Code:
$this->validfields['alerts'] = array(TYPE_INT, REQ_NO);
$this->validfields['warnings'] = array(TYPE_INT, REQ_NO);
$this->validfields['warning_level'] = array(TYPE_INT, REQ_NO);
$this->validfields['warning_bans'] = array(TYPE_INT, REQ_NO);
$this->validfields['warn_notes'] = array(TYPE_UINT, REQ_NO);