xwic / jWic

jWic is a java-based development framework for developing dynamic web applications with the convenience and familiarity of 'rich client' style programming.
https://github.com/xwic/jWic/wiki
4 stars 3 forks source link

Submitting the jwicform fails in Safari #29

Closed apixandru closed 10 years ago

apixandru commented 10 years ago

The jwicform enctype is text/html. This doesn't seem to be a valid enctype but most browsers silently ignore the suggested enctype and use the default instead. Safari defaults to text/plain which causes the parameters to never reach the server.

We should probably use the default application/x-www-form-urlencoded instead.

apixandru commented 10 years ago

changed from text/html;charset=iso-8859-1 to application/x-www-form-urlencoded;charset=UTF-8