Changeset 326
- Timestamp:
- Apr 6, 2010, 12:12:41 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 8 8 .idea 9 9 {} 10 [:] 11 [:]
-
- Property svn:ignore
-
trunk/grails-app/controllers/dbnp/studycapturing/WizardController.groovy
r317 r326 589 589 590 590 // walk through template fields 591 params.template.fields.each() { field -> 592 def value = params.get(field.escapedName()) 593 594 if (value) { 595 flow.study.setFieldValue(field.name, value) 591 if (params.template) { 592 params.template.fields.each() {field -> 593 def value = params.get(field.escapedName()) 594 595 if (value) { 596 flow.study.setFieldValue(field.name, value) 597 } 596 598 } 597 599 }
Note: See TracChangeset
for help on using the changeset viewer.