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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (+3 lines)
Lines 133-138 Link Here
133
                                    [% IF ( lost ) %]
133
                                    [% IF ( lost ) %]
134
                                        <li class="blocker">Patron's card has been reported lost.</li>
134
                                        <li class="blocker">Patron's card has been reported lost.</li>
135
                                    [% END %]
135
                                    [% END %]
136
                                    [% IF patron.account_locked %]
137
                                        <li class="blocker">Account has been [% IF patron.login_attempts < 0 %]administratively [% END %]locked out.</li>
138
                                    [% END %]
136
                                </ul>
139
                                </ul>
137
                            </div>
140
                            </div>
138
                        [% END %]
141
                        [% END %]
(-)a/members/moremember.pl (-1 / +1 lines)
Lines 158-163 if ( $patron->is_debarred ) { Link Here
158
        $template->param( 'debarredcomment'  => $data->{debarredcomment} );
158
        $template->param( 'debarredcomment'  => $data->{debarredcomment} );
159
    }
159
    }
160
}
160
}
161
$template->param( flagged => 1 ) if $patron->account_locked;
161
162
162
$data->{ "sex_".$data->{'sex'}."_p" } = 1 if defined $data->{sex};
163
$data->{ "sex_".$data->{'sex'}."_p" } = 1 if defined $data->{sex};
163
164
164
- 

Return to bug 21312