AutoUnsuspendReserves should compare the suspend_until field as <= rather than <
This has been fixed: 868 sub AutoUnsuspendReserves { 869 my $today = dt_from_string(); 870 871 my @holds = Koha::Holds->search( { suspend_until => { '<=' => $today->ymd() } } ); 872 873 map { $_->suspend(0)->suspend_until(undef)->store() } @holds; 874 } *** This bug has been marked as a duplicate of bug 21075 ***