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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (+4 lines)
Lines 55-60 Link Here
55
55
56
                    [% INCLUDE 'members-toolbar.inc' %]
56
                    [% INCLUDE 'members-toolbar.inc' %]
57
57
58
                    [% IF is_anonymous %]
59
                        <div class="dialog alert">This is the anonymous patron.</div>
60
                    [% END %]
61
58
                    [% IF ( error ) %]
62
                    [% IF ( error ) %]
59
                        <div class="dialog alert">
63
                        <div class="dialog alert">
60
                            [% IF ( error == 'CANT_DELETE_STAFF' ) %]
64
                            [% IF ( error == 'CANT_DELETE_STAFF' ) %]
(-)a/members/moremember.pl (-1 / +4 lines)
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
- 

Return to bug 34910