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
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #16655 | Fri May 16 17:26:54 MDT 2008 | mark.collette | |
Files Changed | ||||
MODIFY
/icefaces/branches/icefaces-1.7/icefaces/core/src/com/icesoft/faces/context/DOMResponseWriter.java
|
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #16654 | Fri May 16 16:33:42 MDT 2008 | mark.collette | |
Files Changed | ||||
MODIFY
/icefaces/trunk/icefaces/core/src/com/icesoft/faces/context/DOMResponseWriter.java
|