This is on SMF and it seems the same on Wedge. We have a Custom Profile Field of field type Select Box, with about 10 values. If one of these values is changed then all its values are removed from the themes table and those members who formerly had this value will now have none.
The work around is to use sql to update the themes table to the new value for the appropriate members, then come back to SMF / Wedge to change the field value.
I.e. run this:
Code: [Select] then go to the Custom Profile Field modify screen to change the value - which must be changed to exactly the new value in the SQL code.
Is this an old bug or is editing the values beyond the idea of select boxes?
The work around is to use sql to update the themes table to the new value for the appropriate members, then come back to SMF / Wedge to change the field value.
I.e. run this:
update `themes` set value = 'New Value' where variable = 'cust_sbox' AND value = 'Old Value'Is this an old bug or is editing the values beyond the idea of select boxes?




