https://issues.apache.org/jira/browse/WICKET-217.

Jan

"Igor Vaynberg" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
makes sense to me, go ahead

-igor



On 1/17/07, jan_bar <[EMAIL PROTECTED]> wrote:
Hi,

ContainerFeedbackMessageFilter filters out messages for the container (for
instance Form). I don't know if this is intention or bug, for me this seems
better:

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);
}
}

Should I fill bug report?

Jan




-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user






-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV




-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to