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

(-)a/opac/opac-reserve.pl (-3 / +1 lines)
Lines 195-203 if ( $query->param('place_reserve') ) { Link Here
195
    foreach my $biblioNum (@biblionumbers) {
195
    foreach my $biblioNum (@biblionumbers) {
196
        my $itemNum = $query->param("checkitem_$biblioNum");
196
        my $itemNum = $query->param("checkitem_$biblioNum");
197
        my @itemnumbers = $query->param("checkitem_$biblioNum");
197
        my @itemnumbers = $query->param("checkitem_$biblioNum");
198
        my $branch = $query->param("branch_$biblioNum");
198
        my $branch = $query->param("branch");
199
        my $reqtype = $query->param("reqtype_$biblioNum");
199
        my $reqtype = $query->param("reqtype_$biblioNum");
200
        warn $biblioNum;
201
        if (!$reqtype) {
200
        if (!$reqtype) {
202
            #If no $reqtype value has been passed from the form this means both reqany and reqspecific radio buttons are disabled because a hold has been placed on this biblio previously and so a forced_hold_level exists.
201
            #If no $reqtype value has been passed from the form this means both reqany and reqspecific radio buttons are disabled because a hold has been placed on this biblio previously and so a forced_hold_level exists.
203
            # Determine what the forced_hold_level is.
202
            # Determine what the forced_hold_level is.
204
- 

Return to bug 15565