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

(-)a/circ/circulation.pl (-2 / +2 lines)
Lines 420-427 if ($borrowernumber) { Link Here
420
        }
420
        }
421
    }
421
    }
422
    $template->param( WaitingReserveLoop => \@WaitingReserveLoop );
422
    $template->param( WaitingReserveLoop => \@WaitingReserveLoop );
423
    $template->param( adultborrower => 1 )
423
424
      if ( $borrower->{'category_type'} eq 'A' );
424
    $template->param( adultborrower => 1 ) if ( $borrower->{category_type} eq 'A' || $borrower->{category_type} eq 'I' );
425
}
425
}
426
426
427
#title
427
#title
(-)a/members/moremember.pl (-2 / +1 lines)
Lines 205-211 else { Link Here
205
	}
205
	}
206
}
206
}
207
207
208
( $template->param( adultborrower => 1 ) ) if ( $category_type eq 'A' || $category_type eq 'I' );
208
$template->param( adultborrower => 1 ) if ( $category_type eq 'A' || $category_type eq 'I' );
209
209
210
my %bor;
210
my %bor;
211
$bor{'borrowernumber'} = $borrowernumber;
211
$bor{'borrowernumber'} = $borrowernumber;
212
- 

Return to bug 14324