| Summary: | Cancelling a hold floods the logs | ||
|---|---|---|---|
| Product: | Koha | Reporter: | Nick Clemens (kidclamp) <nick> |
| Component: | Hold requests | Assignee: | Bugs List <koha-bugs> |
| Status: | RESOLVED DUPLICATE | QA Contact: | Testopia <testopia> |
| Severity: | normal | ||
| Priority: | P5 - low | CC: | gmcharlt, jonathan.druart |
| Version: | 19.05 | ||
| Hardware: | All | ||
| OS: | All | ||
| GIT URL: | Initiative type: | --- | |
| Sponsorship status: | --- | Comma delimited list of Sponsors: | |
| Crowdfunding goal: | 0 | Patch complexity: | --- |
| Documentation contact: | Documentation submission: | ||
| Text to go in the release notes: | Version(s) released in: | ||
| Circulation function: | |||
*** 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' ) ); |
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' ) );