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

(-)a/C4/Search.pm (-3 / +2 lines)
Lines 1950-1957 sub searchResults { Link Here
1950
                                        $can_place_holds = 1;
1950
                                        $can_place_holds = 1;
1951
                                    }
1951
                                    }
1952
                                }
1952
                                }
1953
                            } elsif ( $item->{notforloan} < 0 ) {
1953
                            } elsif ( !$item->{notforloan} || $item->{notforloan} < 0 ) {
1954
                                # item is not damaged and notforloan is < 0
1954
                                # item is not damaged and item is either for loan or has notforloan < 0
1955
                                $can_place_holds = 1;
1955
                                $can_place_holds = 1;
1956
                            }
1956
                            }
1957
                        }
1957
                        }
1958
- 

Return to bug 10741