tweaking condition for exact phrase search 3, a=chris

Chris Pollett [2013-11-20 16:Nov:th]
tweaking condition for exact phrase search 3, a=chris
Filename
lib/phrase_parser.php
diff --git a/lib/phrase_parser.php b/lib/phrase_parser.php
index dd3d26612..bf204a86b 100755
--- a/lib/phrase_parser.php
+++ b/lib/phrase_parser.php
@@ -175,6 +175,25 @@ class PhraseParser
                     return $terms;
                 }
             }
+        } else if($num > 2){
+            $start_terms = $first_terms;
+            $last_term = array_pop($start_terms);
+            $start_phrase = implode(" ", $start_terms);
+            $count_start = IndexManager::numDocsTerm($start_phrase,
+                $index_name, $threshold);
+            if($count_start >= $threshold) {
+                $terms = array($start_phrase, $last_term, $terms[0]);
+                return $terms;
+            }
+            $end_terms = $first_terms;
+            $first_term = array_shift($end_terms);
+            $end_phrase = implode(" ", $end_terms);
+            $count_end = IndexManager::numDocsTerm($end_phrase,
+                $index_name, $threshold);
+            if($count_end >= $threshold) {
+                $terms = array($first_term, $end_phrase);
+                return $terms;
+            }
         }
         if($index_name != 'feed' &&
             IndexManager::getVersion($index_name) == 0) {
ViewGit