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

(-)a/catalogue/search.pl (-1 / +1 lines)
Lines 253-259 $template->param( Link Here
253
);
253
);
254
254
255
# load the Type stuff
255
# load the Type stuff
256
my $types = C4::Context->preference("AdvancedSearchTypes") || "itemtypes";
256
my $types = C4::Context->preference("AdvancedSearchTypes");
257
my $advancedsearchesloop = prepare_adv_search_types($types);
257
my $advancedsearchesloop = prepare_adv_search_types($types);
258
$template->param(advancedsearchesloop => $advancedsearchesloop);
258
$template->param(advancedsearchesloop => $advancedsearchesloop);
259
259
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/searching.pref (-1 / +2 lines)
Lines 107-113 Searching: Link Here
107
            - pref: AdvancedSearchTypes
107
            - pref: AdvancedSearchTypes
108
              class: long
108
              class: long
109
            - "fields (separate values with |). Tabs appear in the order listed.<br/>"
109
            - "fields (separate values with |). Tabs appear in the order listed.<br/>"
110
            - "<em>Currently supported values</em>: Item types (<strong>itemtypes</strong>), Collection, (<strong>ccode</strong>) and Shelving location (<strong>loc</strong>)."
110
            - "<em>Currently supported values</em>: Item types (<strong>itemtypes</strong>), Collection, (<strong>ccode</strong>) and Shelving location (<strong>loc</strong>).<br/>"
111
            - Leave empty to disable these tabs in the staff interface advanced search.
111
        -
112
        -
112
            - Limit the languages listed in the advanced search drop-down to the
113
            - Limit the languages listed in the advanced search drop-down to the
113
            - pref: AdvancedSearchLanguages
114
            - pref: AdvancedSearchLanguages
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/advsearch.tt (-1 / +2 lines)
Lines 211-216 Link Here
211
                </div> <!-- /#advanced-search -->
211
                </div> <!-- /#advanced-search -->
212
212
213
                <!-- MC-TYPE LIMITS -->
213
                <!-- MC-TYPE LIMITS -->
214
                [% IF advancedsearchesloop %]
214
                [% WRAPPER tabs id= "advsearches" %]
215
                [% WRAPPER tabs id= "advsearches" %]
215
                    [% WRAPPER tabs_nav %]
216
                    [% WRAPPER tabs_nav %]
216
                        [% FOREACH advsearchloo IN advancedsearchesloop %]
217
                        [% FOREACH advsearchloo IN advancedsearchesloop %]
Lines 267-272 Link Here
267
                        [% END # /FOREACH advsearchloo %]
268
                        [% END # /FOREACH advsearchloo %]
268
                    [% END # /WRAPPER tab_panels %]
269
                    [% END # /WRAPPER tab_panels %]
269
                [% END # /WRAPPER tabs %]
270
                [% END # /WRAPPER tabs %]
271
                [% END %]
270
                <!-- /MC-TYPE LIMIT -->
272
                <!-- /MC-TYPE LIMIT -->
271
273
272
                [% IF ( expanded_options ) %]
274
                [% IF ( expanded_options ) %]
273
- 

Return to bug 35372