History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: WW-1343
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Critical Critical
Assignee: tm_jee
Reporter: Gilles Durys
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
WebWork

Else tag body displayed when it shouldn't

Created: 29/Aug/06 06:29 AM   Updated: 18/Sep/08 02:26 AM
Component/s: Views
Affects Version/s: 2.2.3
Fix Version/s: 2.2.4

Issue Links:
Related
 
This issue is related to:
WW-1328 Add If, Else and ElseIf to freemarker... Major Resolved


 Description  « Hide
The following code with Webwork 2.2.3:
<ww:if test="true">
   foo
   <ww:if test="false">
      foofoo
   </ww:if>
</ww:if>
<ww:else>
   bar
</ww:else>

will result in:
foo bar

The same code with Webwork 2.2.2 results in:
foo

as expected.

I believe this is due to WW-1328

Reverting the changes to Else (and ElseIf) classes fixes the problem.

 All   Comments   Change History      Sort Order:
tm_jee - [30/Aug/06 12:41 PM ]
fixed in cvs head. Thx for reporting Gilles.