Lines 75-80
output_and_exit_if_error( $input, $cookie, $template, { module => 'members', log
Link Here
|
75 |
|
75 |
|
76 |
my $category_type = $patron->category->category_type; |
76 |
my $category_type = $patron->category->category_type; |
77 |
|
77 |
|
|
|
78 |
if ( $patron->borrowernumber eq C4::Context->preference("AnonymousPatron") ) { |
79 |
$template->param( is_anonymous => 1 ); |
80 |
} |
81 |
|
78 |
for (qw(gonenoaddress lost borrowernotes is_debarred)) { |
82 |
for (qw(gonenoaddress lost borrowernotes is_debarred)) { |
79 |
$patron->$_ and $template->param(flagged => 1) and last; |
83 |
$patron->$_ and $template->param(flagged => 1) and last; |
80 |
} |
84 |
} |
81 |
- |
|
|