diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-01-13 13:46:28 +0000 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-01-13 13:46:28 +0000 |
commit | e82ca928a140400f8446dba85014a0c9059e789b (patch) | |
tree | 78ec4fc2b567c2a169f948dbe25d5b3dfc4e5edb /app/controllers/general_controller.rb | |
parent | 07068037e9b0ac8de80a9eae36a323689c83139d (diff) |
Default site search should search everything. Fixes #341.
Diffstat (limited to 'app/controllers/general_controller.rb')
-rw-r--r-- | app/controllers/general_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/general_controller.rb b/app/controllers/general_controller.rb index 194a1cec0..6cdfb9d5f 100644 --- a/app/controllers/general_controller.rb +++ b/app/controllers/general_controller.rb @@ -99,7 +99,7 @@ class GeneralController < ApplicationController @variety_postfix = path.pop end @variety_postfix = "bodies" if @variety_postfix.nil? && !params[:bodies].nil? - @variety_postfix = "requests" if @variety_postfix.nil? + @variety_postfix = "all" if @variety_postfix.nil? if @variety_postfix != "users" @common_query = get_tags_from_params end |