Skip to content

Commit a1e8b9c

Browse files
committed
GRAILS-11471: Don't try to resolve "*.all.gsp"
1 parent a330fb2 commit a1e8b9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grails-web/src/main/groovy/org/codehaus/groovy/grails/web/pages/discovery/GrailsConventionGroovyPageLocator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public String resolveViewFormat(String viewName) {
105105
}
106106

107107
private String getViewNameWithFormat(String viewName, String format) {
108-
if (format == null) {
108+
if (format == null || format.equals("all")) {
109109
return viewName;
110110
}
111111
return viewName + DOT + format;

0 commit comments

Comments
 (0)