Hi
Not sure if I did that all correct, I used this tutorial:
https://www.vbulletin.com/docs/html/...nager_advanced
To store additional information about a user, I added a field into the vb_user table with name "steam_link", type varchar(128) NOT NULL
Now I tried to modify it:
PHP Code:
// set steam information
$userdata->set('steam_link', $steam_id);
According to the tutorial, I included the following plugin content into the hook "userdata_presave":
PHP Code:
$this->validfields['steam_link'] = array(TYPE_STR, REQ_NO);
But I get the error:
Quote:
Fatal error: Field steam_link is not defined in $validfields in class vB_DataManager_User in /var/www/.../forum/includes/class_dm.php on line 515
|
What am I missing?