ExternalContextUtils doesn't check PORTLET_20_SUPPORTED correctly
-----------------------------------------------------------------
Key: MYFACES-3489
URL: https://issues.apache.org/jira/browse/MYFACES-3489
Project: MyFaces Core
Issue Type: Bug
Components: Portlet_Support
Affects Versions: 2.1.6
Environment: WebSphere 7 Portal + myfaces 2.1.6
Reporter: Greg Dick
The code shown in
https://issues.apache.org/jira/browse/MYFACES-3375
sets the static initialization variable "portlet20Supported" properly, and the
static final boolean _PORTLET_20_SUPPORTED has the correct value, but the code
at line 129 doesn't properly check the flag to identify the request type.
if(_PORTLET_10_SUPPORTED)
should be:
if(_PORTLET_10_SUPPORTED || _PORTLET_20_SUPPORTED)
In WebSphere portal environments, the existing code doesn't property identify
button clicks as Action events.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira