Changeset 178 for trunk/grails-app/controllers/EntryController.groovy
- Timestamp:
- Nov 2, 2009, 3:25:26 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/EntryController.groovy
r122 r178 27 27 if(entryInstance) { 28 28 try { 29 entryInstance.delete( )29 entryInstance.delete(flush:true) 30 30 flash.message = "Entry ${params.id} deleted" 31 31 redirect(action:list) … … 67 67 } 68 68 entryInstance.properties = params 69 if(!entryInstance.hasErrors() && entryInstance.save( )) {69 if(!entryInstance.hasErrors() && entryInstance.save(flush: true)) { 70 70 flash.message = "Entry ${params.id} updated" 71 71 redirect(action:show,id:entryInstance.id) … … 77 77 else { 78 78 flash.message = "Entry not found with id ${params.id}" 79 redirect(action: edit,id:params.id)79 redirect(action:list) 80 80 } 81 81 } … … 89 89 def save = { 90 90 def entryInstance = new Entry(params) 91 if(!entryInstance.hasErrors() && entryInstance.save( )) {91 if(!entryInstance.hasErrors() && entryInstance.save(flush: true)) { 92 92 flash.message = "Entry ${entryInstance.id} created" 93 93 redirect(action:show,id:entryInstance.id)
Note: See TracChangeset
for help on using the changeset viewer.