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

(-)a/members/housebound.pl (-2 / +1 lines)
Lines 62-68 my $patron = Koha::Patrons->find($borrowernumber); Link Here
62
output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
62
output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
63
63
64
# Get supporting cast
64
# Get supporting cast
65
my ( $branch, $houseboundprofile, $visit );
65
my ( $houseboundprofile, $visit );
66
if ( $patron ) { # FIXME This test is not needed - output_and_exit_if_error handles it
66
if ( $patron ) { # FIXME This test is not needed - output_and_exit_if_error handles it
67
    $houseboundprofile = $patron->housebound_profile;
67
    $houseboundprofile = $patron->housebound_profile;
68
}
68
}
69
- 

Return to bug 18789