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

(-)a/members/routing-lists.pl (-2 / +1 lines)
Lines 53-59 my ( $patron, $patron_info ); Link Here
53
if ($borrowernumber) {
53
if ($borrowernumber) {
54
    $patron = Koha::Patrons->find( $borrowernumber );
54
    $patron = Koha::Patrons->find( $borrowernumber );
55
    my $category = $patron->category;
55
    my $category = $patron->category;
56
    my $patron_info = $patron->unblessed;
56
    $patron_info = $patron->unblessed;
57
    $patron_info->{description} = $category->description;
57
    $patron_info->{description} = $category->description;
58
    $patron_info->{category_type} = $category->category_type;
58
    $patron_info->{category_type} = $category->category_type;
59
59
60
- 

Return to bug 17829