|
Lines 128-133
if ( $xslfile ) {
Link Here
|
| 128 |
{ index => $Koha::SearchEngine::BIBLIOS_INDEX } |
128 |
{ index => $Koha::SearchEngine::BIBLIOS_INDEX } |
| 129 |
); |
129 |
); |
| 130 |
my $cleaned_title = $biblio->title; |
130 |
my $cleaned_title = $biblio->title; |
|
|
131 |
$cleaned_title =~ s/(\+|\-|\=|\&\&|\|\||\!|\(|\)|\{|\}|\[|\]|\^|\"|\~|\*|\?|\:|\\|\/)/\\$1/g; |
| 132 |
$cleaned_title =~ s/(<|>)/ /g; |
| 133 |
|
| 131 |
$cleaned_title =~ tr|/||; |
134 |
$cleaned_title =~ tr|/||; |
| 132 |
my $query = |
135 |
my $query = |
| 133 |
( C4::Context->preference('UseControlNumber') and $record->field('001') ) |
136 |
( C4::Context->preference('UseControlNumber') and $record->field('001') ) |
| 134 |
- |
|
|