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

(-)a/catalogue/itemsearch.pl (-1 / +1 lines)
Lines 101-107 if (scalar keys %params > 0) { Link Here
101
        filters => [],
101
        filters => [],
102
    };
102
    };
103
103
104
    foreach my $p (qw(homebranch location itype ccode issues datelastborrowed notforloan)) {
104
    foreach my $p (qw(homebranch holdingbranch location itype ccode issues datelastborrowed notforloan)) {
105
        if (my @q = $cgi->multi_param($p)) {
105
        if (my @q = $cgi->multi_param($p)) {
106
            if ($q[0] ne '') {
106
            if ($q[0] ne '') {
107
                my $f = {
107
                my $f = {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt (-1 / +6 lines)
Lines 14-19 Link Here
14
    [% CASE 'isbn' %]<span>ISBN</span>
14
    [% CASE 'isbn' %]<span>ISBN</span>
15
    [% CASE 'issn' %]<span>ISSN</span>
15
    [% CASE 'issn' %]<span>ISSN</span>
16
    [% CASE 'homebranch' %]<span>Home library</span>
16
    [% CASE 'homebranch' %]<span>Home library</span>
17
    [% CASE 'holdingbranch' %]<span>Current location</span>
17
    [% CASE 'All libraries' %]<span>All libraries</span>
18
    [% CASE 'All libraries' %]<span>All libraries</span>
18
    [% CASE 'location' %]<span>Shelving location</span>
19
    [% CASE 'location' %]<span>Shelving location</span>
19
    [% CASE 'All locations' %]<span>All locations</span>
20
    [% CASE 'All locations' %]<span>All locations</span>
Lines 382-387 Link Here
382
              empty_option = "All libraries"
383
              empty_option = "All libraries"
383
            %]
384
            %]
384
            [% INCLUDE form_field_select
385
            [% INCLUDE form_field_select
386
              name="holdingbranch"
387
              options = branches
388
              empty_option = "All libraries"
389
            %]
390
            [% INCLUDE form_field_select
385
              name="location"
391
              name="location"
386
              options = locations
392
              options = locations
387
              empty_option = "All locations"
393
              empty_option = "All locations"
388
- 

Return to bug 13949