View | Details | Raw Unified | Return to bug 21829
Collapse All | Expand All

(-)a/C4/Letters.pm (-2 / +1 lines)
Lines 785-791 sub _parseletter { Link Here
785
    my $values = $values_in ? { %$values_in } : {};
785
    my $values = $values_in ? { %$values_in } : {};
786
786
787
    if ( $table eq 'borrowers' && $values->{'dateexpiry'} ){
787
    if ( $table eq 'borrowers' && $values->{'dateexpiry'} ){
788
        $values->{'dateexpiry'} = output_pref({ str => $values->{dateexpiry}, dateonly => 1 });
788
        $values->{'dateexpiry'} = output_pref({ dt => dt_from_string( $values->{'dateexpiry'} ), dateonly => 1 });
789
    }
789
    }
790
790
791
    if ( $table eq 'reserves' && $values->{'waitingdate'} ) {
791
    if ( $table eq 'reserves' && $values->{'waitingdate'} ) {
792
- 

Return to bug 21829