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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt (-2 / +2 lines)
Lines 68-74 Link Here
68
                                        [% ELSE %]
68
                                        [% ELSE %]
69
                                            <label for="borrower_branchcode">
69
                                            <label for="borrower_branchcode">
70
                                        [% END %]
70
                                        [% END %]
71
                                        Home Library:</label>
71
                                        Home library:</label>
72
72
73
                                        <select id="borrower_branchcode" name="borrower_branchcode">
73
                                        <select id="borrower_branchcode" name="borrower_branchcode">
74
                                            [% FOREACH b IN branches %]
74
                                            [% FOREACH b IN branches %]
Lines 100-106 Link Here
100
                                <legend id="identity_legend">Identity</legend>
100
                                <legend id="identity_legend">Identity</legend>
101
101
102
                                <ol>
102
                                <ol>
103
                                    [% UNLESS hidden.defined('title') %]
103
                                    [% UNLESS hidden.defined('title') || !member_titles %]
104
                                        <li>
104
                                        <li>
105
                                            [% IF mandatory.defined('title') %]
105
                                            [% IF mandatory.defined('title') %]
106
                                                <label for="borrower_title" class="required">
106
                                                <label for="borrower_title" class="required">
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-memberentry.tt (-2 / +2 lines)
Lines 77-83 Link Here
77
                                                    [% ELSE %]
77
                                                    [% ELSE %]
78
                                                        <label for="borrower_branchcode">
78
                                                        <label for="borrower_branchcode">
79
                                                    [% END %]
79
                                                    [% END %]
80
                                                    Home Library:</label>
80
                                                    Home library:</label>
81
81
82
                                                    <select id="borrower_branchcode" name="borrower_branchcode">
82
                                                    <select id="borrower_branchcode" name="borrower_branchcode">
83
                                                        [% FOREACH b IN branches %]
83
                                                        [% FOREACH b IN branches %]
Lines 107-113 Link Here
107
                                        <legend id="identity_legend">Identity</legend>
107
                                        <legend id="identity_legend">Identity</legend>
108
108
109
                                        <ol>
109
                                        <ol>
110
                                            [% UNLESS hidden.defined('title') %]
110
                                            [% UNLESS hidden.defined('title') || !member_titles %]
111
                                                <li>
111
                                                <li>
112
                                                    [% IF mandatory.defined('title') %]
112
                                                    [% IF mandatory.defined('title') %]
113
                                                        <label for="borrower_title" class="required">
113
                                                        <label for="borrower_title" class="required">
(-)a/opac/opac-memberentry.pl (-2 / +1 lines)
Lines 59-65 $template->param( Link Here
59
    action            => $action,
59
    action            => $action,
60
    hidden            => GetHiddenFields(),
60
    hidden            => GetHiddenFields(),
61
    mandatory         => GetMandatoryFields($action),
61
    mandatory         => GetMandatoryFields($action),
62
    member_titles     => GetTitles(),
62
    member_titles     => GetTitles() || undef,
63
    branches          => GetBranchesLoop(),
63
    branches          => GetBranchesLoop(),
64
    OPACPatronDetails => C4::Context->preference('OPACPatronDetails'),
64
    OPACPatronDetails => C4::Context->preference('OPACPatronDetails'),
65
);
65
);
66
- 

Return to bug 11342