AbstractTransformerBehavior doesn't honor the defaultMarkupEncoding
-------------------------------------------------------------------

                 Key: WICKET-1566
                 URL: https://issues.apache.org/jira/browse/WICKET-1566
             Project: Wicket
          Issue Type: Bug
          Components: wicket
    Affects Versions: 1.3.3
            Reporter: Carlos Pita


Fix:

do

String charset = 
component.getApplication().getMarkupSettings().getDefaultMarkupEncoding();

webResponse.write(new ByteArrayInputStream(output).getBytes(charset)));  

instead of

webResponse.write(output);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to