voodoodyne / subetha

SubEtha Mail is a J2EE-based mailing list manager
Other
13 stars 6 forks source link

summaryNode tag has incorrect recursion order #53

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

have a thread with multiple levels of replies.

What is the expected output? What do you see instead?

a flat list of every reply being a peer <li></li> section, instead you get 
<li><li><li><li></li></li></li></li>

Please use labels and text to provide additional information.

<se:summary msg="${msg}" highlight="${highlight}" />
<se:summaries msgs="${msg.replies}" highlight="${highlight}" flat="${flat}"/>

needs to be split for the flat case, where :

<li><se:summary msg="${msg}" highlight="${highlight}" /></li> 
<se:summaries msgs="${msg.replies}" highlight="${highlight}" flat="${flat}"/>

Original issue reported on code.google.com by jasonpye...@gmail.com on 27 Apr 2014 at 2:06

GoogleCodeExporter commented 9 years ago
This issue was closed by revision 1a3969308e14.

Original comment by jasonpye...@gmail.com on 17 May 2014 at 7:06