Changeset 2139
- Timestamp:
- Nov 14, 2013, 10:02:09 AM (10 years ago)
- Location:
- extensions/net.sf.basedb.reggie/branches/2.13-stable/resources/personal
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.reggie/branches/2.13-stable/resources/personal/bloodfollowupform.jsp
r2138 r2139 358 358 { 359 359 // Auto-fill the date if it's only given with 4(MMdd) or 6(yyMMdd) digits. 360 samplingDate = autoFillDate(samplingDate );360 samplingDate = autoFillDate(samplingDate, true); 361 361 frm.samplingDate.value = samplingDate; 362 362 … … 394 394 { 395 395 // Auto-fill the date if it's only given with 4(MMdd) or 6(yyMMdd) digits. 396 freezerDate = autoFillDate(freezerDate );396 freezerDate = autoFillDate(freezerDate, true); 397 397 frm.freezerDate.value = freezerDate; 398 398 -
extensions/net.sf.basedb.reggie/branches/2.13-stable/resources/personal/bloodform.jsp
r1915 r2139 272 272 { 273 273 // Auto-fill the date if it's only given with 4(MMdd) or 6(yyMMdd) digits. 274 samplingDate = autoFillDate(samplingDate );274 samplingDate = autoFillDate(samplingDate, true); 275 275 frm.samplingDate.value = samplingDate; 276 276 … … 308 308 { 309 309 // Auto-fill the date if it's only given with 4(MMdd) or 6(yyMMdd) digits. 310 freezerDate = autoFillDate(freezerDate );310 freezerDate = autoFillDate(freezerDate, true); 311 311 frm.freezerDate.value = freezerDate; 312 312
Note: See TracChangeset
for help on using the changeset viewer.