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

(-)a/Koha/Hold.pm (-2 / +1 lines)
Lines 896-902 sub _set_default_expirationdate { Link Here
896
      C4::Context->preference('DefaultHoldExpirationdateUnitOfTime') || 'days';
896
      C4::Context->preference('DefaultHoldExpirationdateUnitOfTime') || 'days';
897
897
898
    $self->expirationdate(
898
    $self->expirationdate(
899
        dt_from_string( $self->reservedate )->add( $timeunit => $period ) );
899
        dt_from_string( $self->reservedate->clone )->add( $timeunit => $period ) );
900
}
900
}
901
901
902
=head3 _move_to_old
902
=head3 _move_to_old
903
- 

Return to bug 32563