https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36675
--- Comment #1 from Marcel de Rooy <[email protected]> --- diff --git a/Koha/BackgroundJob/BatchUpdateBiblioHoldsQueue.pm b/Koha/BackgroundJob/BatchUpdateBiblioHoldsQueue.pm index 6419435d41..4c64a61d1a 100644 --- a/Koha/BackgroundJob/BatchUpdateBiblioHoldsQueue.pm +++ b/Koha/BackgroundJob/BatchUpdateBiblioHoldsQueue.pm @@ -129,6 +129,8 @@ Enqueue the new job sub enqueue { my ( $self, $args ) = @_; + return if !C4::Context->preference('RealTimeHoldsQueue'); #TODO Remove check from callers + -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. _______________________________________________ Koha-bugs mailing list [email protected] https://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/
