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

(-)a/Koha/Biblio.pm (-2 / +1 lines)
Lines 1006-1012 sub get_volumes_query { Link Here
1006
        }
1006
        }
1007
    }
1007
    }
1008
    else {
1008
    else {
1009
        my $cleaned_title = $marc->title;
1009
        my $cleaned_title = $marc->subfield('245', "a");
1010
        $cleaned_title =~ tr|/||;
1010
        $cleaned_title =~ tr|/||;
1011
        $cleaned_title = $builder->clean_search_term($cleaned_title);
1011
        $cleaned_title = $builder->clean_search_term($cleaned_title);
1012
        $searchstr = "ti,phr:($cleaned_title)";
1012
        $searchstr = "ti,phr:($cleaned_title)";
1013
- 

Return to bug 26314