https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23079

--- Comment #2 from Jonathan Druart <jonathan.dru...@bugs.koha-community.org> 
---
You specific issue could be fixed with:

@ Patron.pm:625 @ sub is_going_to_expire {
     return 0 unless $delay;
     return 0 unless $self->dateexpiry;
     return 0 if $self->dateexpiry =~ '^9999';
-    return 1 if dt_from_string( $self->dateexpiry )->subtract( days => $delay
) < dt_from_string->truncate( to => 'day' );
+    return 1
+      if dt_from_string( $self->dateexpiry, undef, 'floating')->subtract( days
=> $delay ) <
+      dt_from_string->truncate( to => 'day' );
     return 0;
 }


But it will not help much.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to