@@ -, +, @@ --- Koha/Items.pm | 1 + 1 file changed, 1 insertion(+) --- a/Koha/Items.pm +++ a/Koha/Items.pm @@ -55,6 +55,7 @@ sub filter_by_for_hold { withdrawn => 0, notforloan => { '<=' => 0 } , # items with negative or zero notforloan value are holdable + ( C4::Context->preference('AllowHoldsOnDamagedItems') ? ( damaged => 0 ) : () ), } ); } --