[
https://issues.apache.org/jira/browse/WW-3815?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13277757#comment-13277757
]
Michael Menzies edited comment on WW-3815 at 5/17/12 12:35 PM:
---------------------------------------------------------------
I just set the phase to event in the context. Fixed a few tests, but I'm still
getting a lot of errors. One of the interesting things I noticed is that I had
a npe in PortletResultHelperJSR286. This is because our app is using the
portlet 1.0 api because our portal environment doesn't support the new spec.
was (Author: glopal):
I just set the phase to event in the context. Fix a few tests, but I'm
still getting a lot of errors. One of the interesting things I noticed is that
I had a npe in PortletResultHelperJSR286. This is because our app is using the
portlet 1.0 api because our portal environment doesn't support the new spec.
> Dispatching after action phase renders with different stack/TextProvider
> ------------------------------------------------------------------------
>
> Key: WW-3815
> URL: https://issues.apache.org/jira/browse/WW-3815
> Project: Struts 2
> Issue Type: Bug
> Components: Plugin - Portlet
> Affects Versions: 2.3.3
> Reporter: Michael Menzies
> Assignee: Johannes Geppert
> Priority: Minor
> Fix For: 2.3.5
>
>
> This is actually a rather old bug that was fixed in 2.1.3, but for some
> unknown reason the bug was reintroduced in 2.3.3.
> The PortletStateInterceptor merges the old stack with the current stack
> during the render stage. It should add the old root to the beginning of the
> current root. In 2.3.3 it now adds it to the end.
> This puts the DefaultTextProvider above the Action class, which breaks a
> bunch of struts tags if your action implements TextProvider.
> Unless there is a reason for the change, the simple fix is changing
> root.addAll(oldRoot); to root.addAll(0, oldRoot);
> I had created a stackoverflow question that explains the issue in detail.
> http://stackoverflow.com/questions/10557124/possible-struts-portlet-2-3-3-bug-action-class-not-at-the-top-of-the-value-stac
> Original bug:
> https://issues.apache.org/jira/browse/WW-2720
--
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