@@ -, +, @@ dates if not given - Set dateenrolled and expirydate for a patron - Using the batch patron mod tool, update any field but dateenrolled and --- tools/modborrowers.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/tools/modborrowers.pl +++ a/tools/modborrowers.pl @@ -266,7 +266,7 @@ if ( $op eq 'do' ) { } for my $field ( qw( dateenrolled dateexpiry ) ) { - $infos->{$field} = dt_from_string($infos->{$field}); + $infos->{$field} = dt_from_string($infos->{$field}) if $infos->{$field}; } my @attributes = $input->param('patron_attributes'); --