Alf S. Posted March 15, 2022 Share Posted March 15, 2022 I neded these options in a Select Options field: a ä an I got an SQL error: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'ä-123' for key 'title' The same with o/ö, u/ü and s/ß. Obviously for SQL these characters are the same. (They should be ä=ae, ü=ue, ö=oe, ß=ss ) This works: 1=a|a 2=ä|ae but in the backend I have ae instead of ä... FInally I ended up with this ugly solution: 1=a|"a" 2=ä|'ä' 3=b|"b" 4=c|"c" ... Any better suggestions? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now