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

(-)a/C4/Search.pm (-2 / +1 lines)
Lines 732-738 sub _detect_truncation { Link Here
732
sub _build_stemmed_operand {
732
sub _build_stemmed_operand {
733
    my ($operand,$lang) = @_;
733
    my ($operand,$lang) = @_;
734
    require Lingua::Stem::Snowball ;
734
    require Lingua::Stem::Snowball ;
735
    my $stemmed_operand;
735
    my $stemmed_operand=q{};
736
736
737
    # If operand contains a digit, it is almost certainly an identifier, and should
737
    # If operand contains a digit, it is almost certainly an identifier, and should
738
    # not be stemmed.  This is particularly relevant for ISBNs and ISSNs, which
738
    # not be stemmed.  This is particularly relevant for ISBNs and ISSNs, which
739
- 

Return to bug 8458