Lines 61-66
if ( $op eq 'cud-batchedit' ) {
Link Here
|
61 |
notes => scalar $cgi->param('notes'), |
61 |
notes => scalar $cgi->param('notes'), |
62 |
internalnotes => scalar $cgi->param('internalnotes'), |
62 |
internalnotes => scalar $cgi->param('internalnotes'), |
63 |
serialsadditems => scalar $cgi->param('serialsadditems'), |
63 |
serialsadditems => scalar $cgi->param('serialsadditems'), |
|
|
64 |
warn_when_late => scalar $cgi->param('warn_when_late'), |
64 |
); |
65 |
); |
65 |
# If we convert a blank string we get todays date, we should only convert enddate if it is not blank |
66 |
# If we convert a blank string we get todays date, we should only convert enddate if it is not blank |
66 |
$params{'enddate'} = dt_from_string( scalar $cgi->param('enddate') ) if $cgi->param('enddate'); |
67 |
$params{'enddate'} = dt_from_string( scalar $cgi->param('enddate') ) if $cgi->param('enddate'); |
67 |
- |
|
|