IfBean has a logic error in it
------------------------------
Key: TAPESTRY-555
URL: http://issues.apache.org/jira/browse/TAPESTRY-555
Project: Tapestry
Type: Bug
Components: Framework
Versions: 4.0
Reporter: Adam Greene
Line #57 says:
if (cycleRewinding && form != null && !form.isRewinding())
which always resolves to false. I think what was probably meant was:
if (cycleRewinding && form != null && !form.isRewinding())
I've attached a patch to do this, if this was the expected functionality.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]