Skip to content

Commit

Permalink
MDL-53578 search: Enable course id indexing so it can be filtered
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmerrill committed Mar 22, 2016
1 parent fed66ad commit a4902f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions search/classes/document.php
Expand Up @@ -118,7 +118,7 @@ class document implements \renderable, \templatable {
'courseid' => array(
'type' => 'int',
'stored' => true,
'indexed' => false
'indexed' => true
),
'owneruserid' => array(
'type' => 'int',
Expand All @@ -145,7 +145,7 @@ class document implements \renderable, \templatable {
'userid' => array(
'type' => 'int',
'stored' => true,
'indexed' => false
'indexed' => true
),
'description1' => array(
'type' => 'string',
Expand Down

0 comments on commit a4902f6

Please sign in to comment.