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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-restrictions-tab.inc (-2 / +2 lines)
Lines 59-67 Link Here
59
                            [% FOREACH restriction_type IN restriction_types %]
59
                            [% FOREACH restriction_type IN restriction_types %]
60
                                [% IF !restriction_type.is_system %]
60
                                [% IF !restriction_type.is_system %]
61
                                   [% IF restriction_type.is_default %]
61
                                   [% IF restriction_type.is_default %]
62
                                   <option value="[% code | html %]" selected>[% PROCESS restriction_type_description %]</option>
62
                                   <option value="[% restriction_type.code | html %]" selected>[% PROCESS restriction_type_description %]</option>
63
                                   [% ELSE %]
63
                                   [% ELSE %]
64
                                   <option value="[% code | html %]">[% PROCESS restriction_type_description %]</option>
64
                                   <option value="[% restriction_type.code | html %]">[% PROCESS restriction_type_description %]</option>
65
                                   [% END %]
65
                                   [% END %]
66
                                [% END %]
66
                                [% END %]
67
                            [% END %]
67
                            [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-3 / +2 lines)
Lines 1467-1475 legend:hover { Link Here
1467
                                                            [% FOREACH restriction_type IN restriction_types %]
1467
                                                            [% FOREACH restriction_type IN restriction_types %]
1468
                                                                [% IF !restriction_type.is_system %]
1468
                                                                [% IF !restriction_type.is_system %]
1469
                                                                    [% IF restriction_type.is_default %]
1469
                                                                    [% IF restriction_type.is_default %]
1470
                                                                    <option value="[% code | html %]" selected>[% PROCESS restriction_type_description %]</option>
1470
                                                                    <option value="[% restriction_type.code | html %]" selected>[% PROCESS restriction_type_description %]</option>
1471
                                                                    [% ELSE %]
1471
                                                                    [% ELSE %]
1472
                                                                    <option value="[% code | html %]">[% PROCESS restriction_type_description %]</option>
1472
                                                                    <option value="[% restriction_type.code | html %]">[% PROCESS restriction_type_description %]</option>
1473
                                                                    [% END %]
1473
                                                                    [% END %]
1474
                                                                [% END %]
1474
                                                                [% END %]
1475
                                                            [% END %]
1475
                                                            [% END %]
1476
- 

Return to bug 33574