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

(-)a/Koha/REST/V1/Holds.pm (-2 / +1 lines)
Lines 282-288 sub edit { Link Here
282
        # suspended_until can also be set to undef
282
        # suspended_until can also be set to undef
283
        my $suspended_until =
283
        my $suspended_until =
284
          exists $body->{suspended_until}
284
          exists $body->{suspended_until}
285
          ? $body->{suspended_until} && dt_from_string( $body->{suspended_until}, 'rfc3339' )
285
          ? dt_from_string( $body->{suspended_until}, 'rfc3339' )
286
          : $hold->suspend_until     && dt_from_string( $hold->suspend_until,     'iso' );
286
          : $hold->suspend_until     && dt_from_string( $hold->suspend_until,     'iso' );
287
287
288
        my $params = {
288
        my $params = {
289
- 

Return to bug 29906