]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/SearchDescription.php
PHP tests for ParameterParser
[nominatim.git] / lib / SearchDescription.php
index 13775d65fd9c94c19e27a47f1ea64beb46f8f543..4ba28e352abe7dee676898a614f20494e5eac177 100644 (file)
@@ -58,7 +58,7 @@ class SearchDescription
     /**
      * Get current search rank.
      *
-     * The higher the search rank the lower the likelyhood that the
+     * The higher the search rank the lower the likelihood that the
      * search is a correct interpretation of the search query.
      *
      * @return integer Search rank.
@@ -262,7 +262,7 @@ class SearchDescription
 
                 $iOp = Operator::NEAR; // near == in for the moment
                 if ($aSearchTerm['operator'] == '') {
-                    if (sizeof($this->aName)) {
+                    if (sizeof($this->aName) || $this->oContext->isBoundedSearch()) {
                         $iOp = Operator::NAME;
                     }
                     $oSearch->iSearchRank += 2;