I have enabled the userpoints invite module. When I delete a user I get the following error:

user warning: Unknown column 'event' in 'where clause' query: SELECT uid FROM live_userpoints_txn WHERE event = 'invite register invited 313' ORDER BY time_stamp DESC LIMIT 1 in /www/12345_6789/webseiten/includes/database.mysql.inc on line 172.

Comments

kbahey’s picture

Status: Active » Postponed (maintainer needs more info)

The event column was changed to "operation".

Search the code for the module for:

WHERE event = '%s'

Change that to:

WHERE operation = '%s'

See if this fixes it.

CVS on cvs.drupal.org is down now, so I can't commit the fix, but if you confirm this works, I will do so when cvs comes back up.

kbahey’s picture

Status: Postponed (maintainer needs more info) » Fixed

I committed the change to CVS, so the 5.x-3.x-dev tarball should have that change tomorrow.

Please test it tomorrow, and report back in this issue whether it solves the problem or not.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.