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 574-580 Circulation: Link Here
574
              choices:
574
              choices:
575
                  yes: Allow
575
                  yes: Allow
576
                  no: "Don't allow"
576
                  no: "Don't allow"
577
            - staff to force addition of holds even if the patron already has the maximum number of holds allowed.
577
            - staff to override hold policies when placing holds.
578
        -
578
        -
579
            - pref: AllowHoldsOnDamagedItems
579
            - pref: AllowHoldsOnDamagedItems
580
              choices:
580
              choices:
(-)a/reserve/request.pl (-2 / +1 lines)
Lines 485-491 foreach my $biblionumber (@biblionumbers) { Link Here
485
485
486
                    push( @available_itemtypes, $item->{itype} );
486
                    push( @available_itemtypes, $item->{itype} );
487
                }
487
                }
488
                elsif ( $can_item_be_reserved->{status} eq 'tooManyReserves' && C4::Context->preference('AllowHoldPolicyOverride') ) {
488
                elsif ( C4::Context->preference('AllowHoldPolicyOverride') ) {
489
                    # If AllowHoldPolicyOverride is set, it should override EVERY restriction, not just branch item rules
489
                    # If AllowHoldPolicyOverride is set, it should override EVERY restriction, not just branch item rules
490
                    $item->{override} = 1;
490
                    $item->{override} = 1;
491
                    $num_override++;
491
                    $num_override++;
492
- 

Return to bug 21495