Skip to content
Snippets Groups Projects
Commit 838cb403 authored by Demian Katz's avatar Demian Katz
Browse files

Resolving VUFIND-562

(Facet names with quotes or back slashes do not return results)
parent 169c5be7
No related merge requests found
......@@ -102,7 +102,7 @@ class Params extends \VuFind\Search\Base\Params
) {
$filterQuery[] = $field.':'.$value;
} else {
$filterQuery[] = $field.':"'.$value.'"';
$filterQuery[] = $field.':"'.addcslashes($value, '"\\').'"';
}
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment