Hi, I installed Auto Actions plugin v3.0.1. I added a "interests" column to the jos_users table and created a new auto action rule with trigger = onAfterUserUpdate and this internal query
Code:
UPDATE `jos_users` SET `jos_users.interests` = `tennis`
WHERE `jos_users.id` = `[user_id]`
Editing my profile in the frontend, I get this error:
Code:
moscomprofiler::store failed: Unknown column 'interests' in 'field list' SQL=UPDATE
`jos_comprofiler` SET `user_id`=64, `firstname`=... WHERE id='64'
Why is the plugin looking at jos_comprofiler while my query requires jos_user table??
thanks
Giuse