diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-05-11 10:26:56 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-05-11 10:26:56 +0100 |
commit | eb8996b0b590117b841fd02d7473dfa10aa133bb (patch) | |
tree | 49d4c428f1bc5a59dc239c94103815a3f4ffc81e /app/models | |
parent | 4a1d5613008ecd36769019e622f061fae12d02fa (diff) |
Correctly create tracks for searches that are filtered by variety:authority via the search UI
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/track_thing.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/track_thing.rb b/app/models/track_thing.rb index 2a1235e11..bdcd87e4f 100644 --- a/app/models/track_thing.rb +++ b/app/models/track_thing.rb @@ -175,7 +175,7 @@ class TrackThing < ActiveRecord::Base query += " variety:sent" when "users" query += " variety:user" - when "authorities" + when "bodies" query += " variety:authority" end end |