I have some variables that are coded as enum('x','y','z') in the database.
My application is intended to be viewed in Spanish, however, so I used vocabularies to translate the values specified in enum to Spanish. This worked in the previous version. Now the vocabulary is ignored if enum is specified, so everything is in English, which is confusing my users.
I figure my only work-around at the moment is to eliminate all my enum() variables and use the valuelists.ini files.