Skip to content

Commit b588153

Browse files
committed
Fix links to controllers with namespaces in create-app index.gsp
1 parent 7f5908d commit b588153

File tree

2 files changed

+2
-2
lines changed
  • grails-forge/grails-forge-core/src/main/resources/gsp
  • grails-profiles/web/skeleton/grails-app/views

2 files changed

+2
-2
lines changed

grails-forge/grails-forge-core/src/main/resources/gsp/index.gsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<ul>
7272
<g:each var="c" in="${grailsApplication.controllerClasses.sort { it.fullName } }">
7373
<li class="controller">
74-
<g:link controller="${c.logicalPropertyName}">${c.fullName}</g:link>
74+
<g:link namespace="${c.namespace}" controller="${c.logicalPropertyName}">${c.fullName}</g:link>
7575
</li>
7676
</g:each>
7777
</ul>

grails-profiles/web/skeleton/grails-app/views/index.gsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<ul>
7272
<g:each var="c" in="${grailsApplication.controllerClasses.sort { it.fullName } }">
7373
<li class="controller">
74-
<g:link controller="${c.logicalPropertyName}">${c.fullName}</g:link>
74+
<g:link namespace="${c.namespace}" controller="${c.logicalPropertyName}">${c.fullName}</g:link>
7575
</li>
7676
</g:each>
7777
</ul>

0 commit comments

Comments
 (0)