layouts are being applied to include requests, causing the calling views to break.
list.gsp
<!doctype html>
<html>
<head>
<meta name="layout" content="main">
<title><g:message code="default.list.label" args="[entityName]" /></title>
</head>
<body>
..............
.............
<g:include controller="AnotherController" action="list"/>
</body>
</html>
it would break, because AnotherController's list.gsp would have layout applied as well, causing the <html>,<body> and other tags appear twice in the response -
Is this expected or known behavior ! or should I raise a jira..