From a1e8b9c3458358c23ac80f34ecc9834231032884 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 4 Jun 2014 15:26:44 -0400 Subject: [PATCH] GRAILS-11471: Don't try to resolve "*.all.gsp" --- .../web/pages/discovery/GrailsConventionGroovyPageLocator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grails-web/src/main/groovy/org/codehaus/groovy/grails/web/pages/discovery/GrailsConventionGroovyPageLocator.java b/grails-web/src/main/groovy/org/codehaus/groovy/grails/web/pages/discovery/GrailsConventionGroovyPageLocator.java index 77a5be8d81a..4709115210d 100644 --- a/grails-web/src/main/groovy/org/codehaus/groovy/grails/web/pages/discovery/GrailsConventionGroovyPageLocator.java +++ b/grails-web/src/main/groovy/org/codehaus/groovy/grails/web/pages/discovery/GrailsConventionGroovyPageLocator.java @@ -105,7 +105,7 @@ public String resolveViewFormat(String viewName) { } private String getViewNameWithFormat(String viewName, String format) { - if (format == null) { + if (format == null || format.equals("all")) { return viewName; } return viewName + DOT + format;