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

(-)a/Koha/ItemTypes.pm (-2 / +2 lines)
Lines 56-62 sub search_with_localization { Link Here
56
        }
56
        }
57
    ];
57
    ];
58
    if(defined $params->{branchcode}) {
58
    if(defined $params->{branchcode}) {
59
        $self->search_with_library_limits( $params, $attributes );
59
        my $branchcode = delete $params->{branchcode};
60
        $self->search_with_library_limits( $params, $attributes, $branchcode );
60
    } else {
61
    } else {
61
        $self->SUPER::search( $params, $attributes );
62
        $self->SUPER::search( $params, $attributes );
62
    }
63
    }
63
- 

Return to bug 15497