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

Katrin Fischer <katrin.fisc...@bsz-bw.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |katrin.fisc...@bsz-bw.de
         Resolution|---                         |DUPLICATE
             Status|NEW                         |RESOLVED

--- Comment #1 from Katrin Fischer <katrin.fisc...@bsz-bw.de> ---
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 ***

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
_______________________________________________
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