From 71cd34a35ff6dbda1678153ff8e03c0343af4b8e Mon Sep 17 00:00:00 2001 From: Reinier Balt Date: Tue, 31 Jan 2012 12:11:14 +0100 Subject: [PATCH] fix #1239. Context helper was missing in search controller Conflicts: app/controllers/search_controller.rb --- app/controllers/search_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/search_controller.rb b/app/controllers/search_controller.rb index 44fa0d3f..6bb67311 100644 --- a/app/controllers/search_controller.rb +++ b/app/controllers/search_controller.rb @@ -1,7 +1,7 @@ class SearchController < ApplicationController - helper :todos, :application, :notes, :projects - + helper :todos, :application, :notes, :projects, :contexts + def results @source_view = params['_source_view'] || 'search' @page_title = "TRACKS::Search Results for #{params[:search]}"