382 C4::Log::logaction( 'HOLDS', 'CANCEL', $self->reserve_id, Dumper($self->unblessed) ) 383 if C4::Context->preference('HoldsLog'); This ends up loggining a date time object for the cancellation date: 357 $self->cancellationdate( dt_from_string->strftime( '%Y-%m-%d %H:%M:%S' ) );
*** This bug has been marked as a duplicate of bug 23219 ***
Actually, we may want to cherry-pick the fix for this for stable versions: $self->cancellationdate(dt_from_string); to $self->cancellationdate( dt_from_string->strftime( '%Y-%m-%d %H:%M:%S' ) );
*** This bug has been marked as a duplicate of bug 28700 ***