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

(-)a/C4/Search.pm (-2 / +1 lines)
Lines 1705-1711 sub buildQuery { Link Here
1705
            if ( $k !~ /mc-i(tem)?type/ ) {
1705
            if ( $k !~ /mc-i(tem)?type/ ) {
1706
                # in case the mc-ccode value has complicating chars like ()'s inside it we wrap in quotes
1706
                # in case the mc-ccode value has complicating chars like ()'s inside it we wrap in quotes
1707
                $this_limit =~ tr/"//d;
1707
                $this_limit =~ tr/"//d;
1708
                $this_limit = $k.":\"".$v."\"";
1708
                $this_limit = $k.":'".$v."'";
1709
            }
1709
            }
1710
1710
1711
            $group_OR_limits{$k} .= " or " if $group_OR_limits{$k};
1711
            $group_OR_limits{$k} .= " or " if $group_OR_limits{$k};
1712
- 

Return to bug 13442