20 Jul
2023
20 Jul
'23
3:25 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34117 --- Comment #10 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- Ok so maybe I get it now. If that was the original problem then the correct fix is (in get_expiry_date): - $date = dt_from_string( $date ) unless ref $date; + $date = ref $date ? $date->clone() : dt_from_string( $date ); If confirmed, the same should be apply to get_password_expiry_date. If all that does not make sense, please ignore me. -- You are receiving this mail because: You are watching all bug changes.