Details
Description
In com.icesoft.faces.context.DOMResponseWriter.enhanceHtml(Element), we're using:
Locale locale = context.getApplication().getViewHandler().calculateLocale(context);
when we should instead be using:
Locale locale = context.getViewRoot().getLocale();
since that will respect any set Locale, and otherwise invoke ViewHandler.calculateLocale(FacesContext)
Locale locale = context.getApplication().getViewHandler().calculateLocale(context);
when we should instead be using:
Locale locale = context.getViewRoot().getLocale();
since that will respect any set Locale, and otherwise invoke ViewHandler.calculateLocale(FacesContext)
Activity
- All
- Comments
- History
- Activity
- Remote Attachments
- Subversion
TRUNK
Subversion 16654
icefaces\core\src\com\icesoft\faces\context\DOMResponseWriter.java
ICEfaces 1.7 branch
Subversion 16655
icefaces\core\src\com\icesoft\faces\context\DOMResponseWriter.java