invalid Url.setCharset
----------------------

                 Key: WICKET-3492
                 URL: https://issues.apache.org/jira/browse/WICKET-3492
             Project: Wicket
          Issue Type: Bug
    Affects Versions: 1.5-RC2, 1.5-RC1, 1.5-M3, 1.5-M2.1, 1.5-M1
            Reporter: Alexander Mayer


Url.setCharset set always "UTF-8", correct version:
private void setCharset(final Charset charset)
{
        if (charset == null)
        {
                charsetName = "UTF-8";
        }
        else
        {
                charsetName = charset.name();
        }
        _charset = null;
}

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to