Bugzilla – Attachment #137247: Bug 31106: Make clean_search_term escape double quotes for
bug #31106
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
View
|
Details
|
Raw Unified
| Return to
bug 31106
Collapse All
|
Expand All
(-)
a/Koha/SearchEngine/Zebra/QueryBuilder.pm (-1 / +2 lines)
Lines 127-132 sub build_authorities_query_compat {
Link Here
127
sub clean_search_term {
127
sub clean_search_term {
128
my ( $self, $term ) = @_;
128
my ( $self, $term ) = @_;
129
129
130
$term =~ s/"/\\"/g;
131
130
return $term;
132
return $term;
131
}
133
}
132
134
133
-
Return to
bug 31106