You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking into the table exp_channel_data shows the vz_member field data being written as the member's id with a pipe and the string 'temp' (e.g. 5|temp) instead of just the member's id.
Removing unset($field_data['temp']); and restoring the old @array_pop($field_data); around line 334 makes things work again but I don't know what the full repercussions are by doing this.
The text was updated successfully, but these errors were encountered:
Getting this after upgrade:
Error Number: 1054
Unknown column 'temp' in 'where clause'
SELECT member_id, group_id, username, screen_name FROM exp_members WHERE member_id IN (5,temp) ORDER BY member_id ASC
Filename: /var/www/html/third_party/vz_members/ft.vz_members.php
Line Number: 370
Looking into the table exp_channel_data shows the vz_member field data being written as the member's id with a pipe and the string 'temp' (e.g. 5|temp) instead of just the member's id.
Removing unset($field_data['temp']); and restoring the old @array_pop($field_data); around line 334 makes things work again but I don't know what the full repercussions are by doing this.
The text was updated successfully, but these errors were encountered: