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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc (+1 lines)
Lines 232-237 Link Here
232
                                                        [% IF LibrarySearchGroups %]<optgroup label="Libraries">[% END %]
232
                                                        [% IF LibrarySearchGroups %]<optgroup label="Libraries">[% END %]
233
233
234
                                                        [% FOREACH library IN Branches.all( selected => opac_name ) %]
234
                                                        [% FOREACH library IN Branches.all( selected => opac_name ) %]
235
                                                            [% NEXT UNLESS library.public %]
235
                                                            [% IF library.selected %]
236
                                                            [% IF library.selected %]
236
                                                                <option selected="selected" value="branch:[% library.branchcode | html %]">[% library.branchname | html %]</option>
237
                                                                <option selected="selected" value="branch:[% library.branchcode | html %]">[% library.branchname | html %]</option>
237
                                                            [% ELSE %]
238
                                                            [% ELSE %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-advsearch.tt (-1 / +1 lines)
Lines 232-237 Link Here
232
                                    <select name="limit" id="branchloop">
232
                                    <select name="limit" id="branchloop">
233
                                    <option value="">All libraries</option>
233
                                    <option value="">All libraries</option>
234
                                    [% FOREACH BranchesLoo IN Branches.all( selected => opac_name ) %]
234
                                    [% FOREACH BranchesLoo IN Branches.all( selected => opac_name ) %]
235
                                        [% NEXT UNLESS BranchesLoo.public %]
235
                                        [% IF BranchesLoo.selected %]
236
                                        [% IF BranchesLoo.selected %]
236
                                            <option value="branch:[% BranchesLoo.branchcode | html %]" selected="selected">[% BranchesLoo.branchname | html %]</option>
237
                                            <option value="branch:[% BranchesLoo.branchcode | html %]" selected="selected">[% BranchesLoo.branchname | html %]</option>
237
                                        [% ELSE %]
238
                                        [% ELSE %]
238
- 

Return to bug 31654