Changeset 1368 for extensions
- Timestamp:
- May 23, 2011, 2:31:26 PM (12 years ago)
- Location:
- extensions/net.sf.basedb.reggie/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.reggie/trunk/resources/consentform.jsp
r1359 r1368 249 249 if (consentDate == '') 250 250 { 251 setInputStatus('consentDate', 'Missing', 'invalid'); 252 return; 251 setInputStatus('consentDate', 'Missing', 'warning'); 253 252 } 254 253 else -
extensions/net.sf.basedb.reggie/trunk/src/net/sf/basedb/reggie/servlet/ConsentFormServlet.java
r1359 r1368 177 177 } 178 178 Reggie.setAnnotationValue(theCase, consentType, consent); 179 Reggie.setAnnotationValue(theCase, consentDateType, consentDate);179 if (consentDate != null) Reggie.setAnnotationValue(theCase, consentDateType, consentDate); 180 180 181 181 dc.commit();
Note: See TracChangeset
for help on using the changeset viewer.