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

(-)a/C4/Search.pm (-2 / +5 lines)
Lines 1564-1570 sub buildQuery { Link Here
1564
                    $stemming = $auto_truncation = $weight_fields = $fuzzy_enabled = 0;
1564
                    $stemming = $auto_truncation = $weight_fields = $fuzzy_enabled = 0;
1565
                }
1565
                }
1566
                # ISBN,ISSN,Standard Number, don't need special treatment
1566
                # ISBN,ISSN,Standard Number, don't need special treatment
1567
                elsif ( $index eq 'nb' || $index eq 'ns' || $index eq 'hi' ) {
1567
                elsif ( $index eq 'nb' || $index eq 'ns' || $index eq 'hi' || $index eq 'sn' ) {
1568
                    (
1568
                    (
1569
                        $stemming,      $auto_truncation,
1569
                        $stemming,      $auto_truncation,
1570
                        $weight_fields, $fuzzy_enabled
1570
                        $weight_fields, $fuzzy_enabled
Lines 1578-1583 sub buildQuery { Link Here
1578
                        }
1578
                        }
1579
                    }
1579
                    }
1580
                }
1580
                }
1581
                elsif ( $index =~ /^ident/i ) {
1582
                    $stemming = $auto_truncation = $weight_fields = $fuzzy_enabled = 0;
1583
                }
1584
1581
1585
1582
                if(not $index){
1586
                if(not $index){
1583
                    $index = 'kw';
1587
                    $index = 'kw';
1584
- 

Return to bug 24143