You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Alexander Mayer (JIRA)" <ji...@apache.org> on 2011/03/02 13:44:36 UTC

[jira] Updated: (WICKET-3492) Url.setCharset always set "UTF-8"

     [ https://issues.apache.org/jira/browse/WICKET-3492?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexander Mayer updated WICKET-3492:
------------------------------------

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

  was:
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;
}

        Summary: Url.setCharset always set "UTF-8"  (was: invalid Url.setCharset)

> Url.setCharset always set "UTF-8"
> ---------------------------------
>
>                 Key: WICKET-3492
>                 URL: https://issues.apache.org/jira/browse/WICKET-3492
>             Project: Wicket
>          Issue Type: Bug
>    Affects Versions: 1.5-M1, 1.5-M2.1, 1.5-M3, 1.5-RC1, 1.5-RC2
>            Reporter: Alexander Mayer
>              Labels: Url
>
> Url.setCharset always set "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