Changeset 375 for trunk/grails-app/controllers/PersonController.groovy
- Timestamp:
- Feb 18, 2010, 1:29:00 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/PersonController.groovy
r295 r375 34 34 // In the case of an actionSubmit button, rewrite action name from 'index'. 35 35 if(params._action_Show) 36 { params.action='show' }36 params.action='show' 37 37 38 38 def person = Person.get(params.id) … … 86 86 // In the case of an actionSubmit button, rewrite action name from 'index'. 87 87 if(params._action_Edit) 88 { params.action='edit' }88 params.action='edit' 89 89 90 90 def person = Person.get(params.id)
Note: See TracChangeset
for help on using the changeset viewer.