diff options
Diffstat (limited to 'modules/search')
-rw-r--r-- | modules/search/search.module | 8 | ||||
-rw-r--r-- | modules/search/search.test | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/modules/search/search.module b/modules/search/search.module index 627983476..08af04d03 100644 --- a/modules/search/search.module +++ b/modules/search/search.module @@ -903,8 +903,8 @@ function _search_parse_query(&$word, &$scores, $not = FALSE) { * * @param $columns2 * (optional) Inserted into the SELECT pat of the second query. Must contain - * a column selected as 'score'. - * defaults to 'i.relevance AS score' + * a column selected as 'calculated_score'. + * defaults to 'i.relevance AS calculated_score' * * @param $join2 * (optional) Inserted into the JOIN par of the second SQL query. @@ -915,14 +915,14 @@ function _search_parse_query(&$word, &$scores, $not = FALSE) { * * @param $sort_parameters * (optional) SQL arguments for sorting the final results. - * Default: 'ORDER BY score DESC' + * Default: 'ORDER BY calculated_score DESC' * * @return * An array of SIDs for the search results. * * @ingroup search */ -function do_search($keywords, $type, $join1 = '', $where1 = '1 = 1', $arguments1 = array(), $columns2 = 'i.relevance AS score', $join2 = '', $arguments2 = array(), $sort_parameters = 'ORDER BY score DESC') { +function do_search($keywords, $type, $join1 = '', $where1 = '1 = 1', $arguments1 = array(), $columns2 = 'i.relevance AS calculated_score', $join2 = '', $arguments2 = array(), $sort_parameters = 'ORDER BY calculated_score DESC') { $query = search_parse_query($keywords); if ($query[2] == '') { diff --git a/modules/search/search.test b/modules/search/search.test index 1310527a2..cf3081df3 100644 --- a/modules/search/search.test +++ b/modules/search/search.test @@ -148,7 +148,7 @@ class SearchMatchTestCase extends DrupalWebTestCase { // Get result scores. $scores = array(); foreach ($set as $item) { - $scores[] = $item->score; + $scores[] = $item->calculated_score; } // Check order. |