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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-restrictions-tab.inc (-3 / +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 %]
68
- 

Return to bug 16223