- Timestamp:
- Nov 2, 2009, 3:25:26 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/SystemSectionController.groovy
r162 r178 67 67 } 68 68 systemSectionInstance.properties = params 69 if(!systemSectionInstance.hasErrors() && systemSectionInstance.save( )) {69 if(!systemSectionInstance.hasErrors() && systemSectionInstance.save(flush: true)) { 70 70 flash.message = "SystemSection ${params.id} updated" 71 71 redirect(action:show,id:systemSectionInstance.id) … … 89 89 def save = { 90 90 def systemSectionInstance = new SystemSection(params) 91 if(!systemSectionInstance.hasErrors() && systemSectionInstance.save( )) {91 if(!systemSectionInstance.hasErrors() && systemSectionInstance.save(flush: true)) { 92 92 flash.message = "SystemSection ${systemSectionInstance.id} created" 93 93 redirect(action:show,id:systemSectionInstance.id)
Note: See TracChangeset
for help on using the changeset viewer.