SWF-1053 Apply fix to ensure cascaded attributes are inherited

This commit is contained in:
Rossen Stoyanchev
2010-07-11 23:37:04 +00:00
parent 7b9589c1b6
commit 5de788d396
2 changed files with 32 additions and 1 deletions

View File

@@ -124,7 +124,9 @@ public class AjaxTilesView extends TilesView {
throw new ServletException("No tiles attribute with a name of '" + fragmentsToRender[i]
+ "' could be found for the current view: " + this);
} else {
container.render(attributeToRender, new Object[] { request, response });
container.startContext(request, response).inheritCascadedAttributes(compositeDefinition);
container.render(attributeToRender, request, response);
container.endContext(request, response);
}
}
} else {