Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.2.2
-
None
-
Patch
Description
After putting this line in the template:
<tiles:getAsString name="subtitle" ignore="true"/>
<tiles:insertAttribute name="body" />
And if "subtitle" attribute is not defined. The page will fail on rendering the "body" attribute, because getAsString failed to cleanup it's tiles context (endContext() is not executed).
SOLUTION:
The problem is in GetAsStringModel class, in the last method - renderAttribute():
The first three lines that check for null attribute and ignore flag should be inside the try caluse:
try {
if (attribute == null && ignore)
writer.write(...
This way the finally clause will be executed even in attribute is null and should be ignored. The finally clause is ending the tiles context.
This is the same as the code inside: InsertAttributeModel.renderAttribute()