Changeset 162 for trunk/grails-app/controllers
- Timestamp:
- Oct 22, 2009, 8:26:09 PM (15 years ago)
- Location:
- trunk/grails-app/controllers
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/SystemSectionController.groovy
r118 r162 27 27 if(systemSectionInstance) { 28 28 try { 29 systemSectionInstance.delete( )29 systemSectionInstance.delete(flush:true) 30 30 flash.message = "SystemSection ${params.id} deleted" 31 31 redirect(action:list) … … 77 77 else { 78 78 flash.message = "SystemSection not found with id ${params.id}" 79 redirect(action: edit,id:params.id)79 redirect(action:list) 80 80 } 81 81 } -
trunk/grails-app/controllers/SystemSectionDetailedController.groovy
r124 r162 27 27 if(systemSectionInstance) { 28 28 try { 29 systemSectionInstance.delete( )29 systemSectionInstance.delete(flush:true) 30 30 flash.message = "SystemSection ${params.id} deleted" 31 31 redirect(action:list) … … 77 77 else { 78 78 flash.message = "SystemSection not found with id ${params.id}" 79 redirect(action: edit,id:params.id)79 redirect(action:list) 80 80 } 81 81 }
Note: See TracChangeset
for help on using the changeset viewer.