SBoss Posted November 22, 2016 Share Posted November 22, 2016 Hi, Currently it seems like the PaymentOption form does not support UTF8-encoded strings - they are encoded somewhere between setting and displaying. The issue is easily reproducible with the paymentexample. Replace generateForm() in paymentexample.php with return "<form>äöüéàè</form>"; which will then display äöüéà è The following will display the correct characters: return "<form>".utf8_decode("äöüéàè")."</form>"; Thanks for looking into this. 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