- Timestamp:
- Feb 18, 2010, 5:10:12 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/SiteDetailedController.groovy
r360 r385 20 20 @Secured(['ROLE_AppAdmin', 'ROLE_Manager', 'ROLE_AssetManager', 'ROLE_AssetUser']) 21 21 def show = { 22 23 // In the case of an actionSubmit button, rewrite action name from 'index'. 24 if(params._action_Show) 25 params.action='show' 26 22 27 def siteInstance = Site.get( params.id ) 23 28 … … 50 55 51 56 def edit = { 57 58 // In the case of an actionSubmit button, rewrite action name from 'index'. 59 if(params._action_Edit) 60 params.action='edit' 61 52 62 def siteInstance = Site.get( params.id ) 53 63
Note: See TracChangeset
for help on using the changeset viewer.