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

Do not quote onephrase value for single words.

Progress on VUFIND-428.
parent 7250d108
No related merge requests found
...@@ -279,8 +279,13 @@ class SearchHandler ...@@ -279,8 +279,13 @@ class SearchHandler
// unmodified (it's probably an advanced search that won't benefit from // unmodified (it's probably an advanced search that won't benefit from
// tokenization). We'll just set all possible values to the same thing, // tokenization). We'll just set all possible values to the same thing,
// except that we'll try to do the "one phrase" in quotes if possible. // except that we'll try to do the "one phrase" in quotes if possible.
// IMPORTANT: If we detect a boolean NOT, we MUST omit the quotes. // IMPORTANT: If we detect a boolean NOT, we MUST omit the quotes. We
if (strstr($search, '"') || strstr($search, ' NOT ')) { // also omit quotes if the phrase is already quoted or if there is no
// whitespace (in which case phrase searching is pointless and might
// interfere with wildcard behavior):
if (strstr($search, '"') || strstr($search, ' NOT ')
|| !preg_match('/\s/', $search)
) {
$mungeValues['onephrase'] = $search; $mungeValues['onephrase'] = $search;
} else { } else {
$mungeValues['onephrase'] = sprintf('"%s"', $search); $mungeValues['onephrase'] = sprintf('"%s"', $search);
...@@ -331,7 +336,6 @@ class SearchHandler ...@@ -331,7 +336,6 @@ class SearchHandler
*/ */
protected function createQueryString($search, $advanced = false) protected function createQueryString($search, $advanced = false)
{ {
// If this is a basic query and we have Dismax settings, let's build // If this is a basic query and we have Dismax settings, let's build
// a Dismax subquery to avoid some of the ugly side effects of our Lucene // a Dismax subquery to avoid some of the ugly side effects of our Lucene
// query generation logic. // query generation logic.
......
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