I tried creating a patient whose name has the following two characters in it: ө ү
Some things work, some don't.
- 'Add new patient', then type the name, then click 'Create Person': BROKEN. (Everything after the first odd character in the name is lost when you get to the next page, as are age and gender.)
- This is because the url redirected to is incorrectly escaped: http://localhost:8080/openmrs/admin/patients/newPatient.form?addName=Dөrius%20Jazaүeri&addBirthdate=&addAge=30&addGender=M
- Actually creating a patient with those letters in the name: SORT OF WORKS
- The name actually saved in the database is: Dөrius. Thus viewing that patient record it appears correct on the screen.
- Searching for a patient with odd letters in their name: BROKEN
- Because the name in the DB has ө in it, doing the DWR search for ө breaks.