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

(-)a/C4/Search.pm (-1 / +7 lines)
Lines 1341-1346 sub buildQuery { Link Here
1341
                            $indexes[$i] = $index = 'kw';
1341
                            $indexes[$i] = $index = 'kw';
1342
                        }
1342
                        }
1343
                    }
1343
                    }
1344
                    if ( $index eq 'ns' ) {
1345
                        if ( C4::Context->preference("SearchWithISSNVariations") ) {
1346
                            my @issns = C4::Koha::GetVariationsOfISSN( $operand );
1347
                            $operands[$i] = $operand =  '(ns=' . join(' OR ns=', @issns) . ')';
1348
                            $indexes[$i] = $index = 'kw';
1349
                        }
1350
                    }
1344
                }
1351
                }
1345
1352
1346
                # Set default structure attribute (word list)
1353
                # Set default structure attribute (word list)
1347
- 

Return to bug 23919