Skip to content

Commit 1756bcc

Browse files
Merge pull request #503 from candrews/patch-10
GRAILS-11471: Don't try to resolve "*.all.gsp"
2 parents d8e0142 + a1e8b9c commit 1756bcc

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)