View | Details | Raw Unified | Return to bug 21495
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +1 lines)
Lines 582-588 Circulation: Link Here
582
              choices:
582
              choices:
583
                  yes: Allow
583
                  yes: Allow
584
                  no: "Don't allow"
584
                  no: "Don't allow"
585
            - staff to force addition of holds even if the patron already has the maximum number of holds allowed.
585
            - staff to override hold policies when placing holds.
586
        -
586
        -
587
            - pref: AllowHoldsOnDamagedItems
587
            - pref: AllowHoldsOnDamagedItems
588
              choices:
588
              choices:
(-)a/reserve/request.pl (-2 / +1 lines)
Lines 490-496 foreach my $biblionumber (@biblionumbers) { Link Here
490
490
491
                    push( @available_itemtypes, $item->{itype} );
491
                    push( @available_itemtypes, $item->{itype} );
492
                }
492
                }
493
                elsif ( $can_item_be_reserved->{status} eq 'tooManyReserves' && C4::Context->preference('AllowHoldPolicyOverride') ) {
493
                elsif ( C4::Context->preference('AllowHoldPolicyOverride') ) {
494
                    # If AllowHoldPolicyOverride is set, it should override EVERY restriction, not just branch item rules
494
                    # If AllowHoldPolicyOverride is set, it should override EVERY restriction, not just branch item rules
495
                    $item->{override} = 1;
495
                    $item->{override} = 1;
496
                    $num_override++;
496
                    $num_override++;
497
- 

Return to bug 21495