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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-5 / +4 lines)
Lines 283-293 legend:hover { Link Here
283
                                                            Salutation: </label>
283
                                                            Salutation: </label>
284
                                                            <select id="btitle" name="title">
284
                                                            <select id="btitle" name="title">
285
                                                                <option value=""></option>
285
                                                                <option value=""></option>
286
                                                                [% FOREACH t IN Koha.Preference('BorrowersTitles').split('\|') %]
286
                                                                [% FOREACH patron_title IN Koha.Preference('BorrowersTitles').split('\|') %]
287
                                                                    [% IF btitle == t %]
287
                                                                    [% IF btitle == patron_title %]
288
                                                                        <option value="[% t | html %]" selected="selected">[% t | html %]</option>
288
                                                                        <option value="[% patron_title | html %]" selected="selected">[% patron_title | html %]</option>
289
                                                                    [% ELSE %]
289
                                                                    [% ELSE %]
290
                                                                        <option value="[% t | html %]">[% t | html %]</option>
290
                                                                        <option value="[% patron_title | html %]">[% t | html %]</option>
291
                                                                    [% END %]
291
                                                                    [% END %]
292
                                                                [% END %]
292
                                                                [% END %]
293
                                                            </select>
293
                                                            </select>
294
- 

Return to bug 35701