Skip to content

Commit

Permalink
Issue #2879960 by Jill L: The "extra" parameter in search_dataset mus…
Browse files Browse the repository at this point in the history
…t be an array like all other definitions.
  • Loading branch information
JillL authored and damienmckenna committed Aug 22, 2017
1 parent 7e3a463 commit 028bae8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/search.views.inc
Expand Up @@ -43,14 +43,14 @@ function search_views_data() {
'left_table' => 'search_index',
'left_field' => 'sid',
'field' => 'sid',
'extra' => 'search_index.type = search_dataset.type',
'extra' => array('search_index.type = search_dataset.type'),
'type' => 'INNER',
),
'users' => array(
'left_table' => 'search_index',
'left_field' => 'sid',
'field' => 'sid',
'extra' => 'search_index.type = search_dataset.type',
'extra' => array('search_index.type = search_dataset.type'),
'type' => 'INNER',
),
);
Expand Down

0 comments on commit 028bae8

Please sign in to comment.