Skip to content

Commit 483841a

Browse files
author
takamori
committed
Fix for GRAILS-1063. Added GroovyPageTagBody.doCall(Object) so that body([:]) would work properly.
git-svn-id: https://svn.codehaus.org/grails/trunk@3977 1cfb16fd-6d17-0410-8ff1-b7e8e1e2867d
1 parent 97710f7 commit 483841a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/web/org/codehaus/groovy/grails/web/taglib/GroovyPageTagBody.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ public Object doCall() {
9393
return captureClosureOutput(null);
9494
}
9595

96+
public Object doCall(Object arguments) {
97+
return captureClosureOutput(arguments);
98+
}
99+
96100
public Object call() {
97101
return captureClosureOutput(null);
98102
}

0 commit comments

Comments
 (0)