ContainerFeedbackMessageFilter filters out messages for container
-----------------------------------------------------------------

                 Key: WICKET-217
                 URL: https://issues.apache.org/jira/browse/WICKET-217
             Project: Wicket
          Issue Type: Bug
          Components: wicket
    Affects Versions: 1.2.4
            Reporter: Jan Bare?
            Priority: Trivial


ContainerFeedbackMessageFilter filters out messages for the container (for
instance Form).

public boolean accept(FeedbackMessage message) {
if (message.getReporter() == null) {
  return false;
}
else if(container == message.getReporter())  { //<=== missing?
  return true;
}
else {
  return container.contains(message.getReporter(), true);
}
}


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to