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

(-)a/C4/Letters.pm (-2 / +1 lines)
Lines 879-885 sub _parseletter { Link Here
879
    my $values = $values_in ? { %$values_in } : {};
879
    my $values = $values_in ? { %$values_in } : {};
880
880
881
    if ( $table eq 'borrowers' && $values->{'dateexpiry'} ){
881
    if ( $table eq 'borrowers' && $values->{'dateexpiry'} ){
882
        $values->{'dateexpiry'} = format_sqldatetime( $values->{'dateexpiry'} );
882
        $values->{'dateexpiry'} = output_pref({ dt => dt_from_string( $values->{'dateexpiry'} ), dateonly => 1 });
883
    }
883
    }
884
884
885
    if ( $table eq 'reserves' && $values->{'waitingdate'} ) {
885
    if ( $table eq 'reserves' && $values->{'waitingdate'} ) {
886
- 

Return to bug 21829