From a9dbc6160a217b3c8dbdbb3b576c8db7230e6abe Mon Sep 17 00:00:00 2001 From: kikito Date: Tue, 7 Jun 2016 11:09:43 +0200 Subject: [PATCH] Fixes typo in ApplicationController --- app/controllers/application_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 6384f19e3..62058141e 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -81,7 +81,7 @@ class ApplicationController < ActionController::Base end def set_budget_investment_votes(budget_investments) - @budget_investments_votes = current_user ? current_user.budget_investment_votes(budget_investments) : {} + @budget_investment_votes = current_user ? current_user.budget_investment_votes(budget_investments) : {} end def set_comment_flags(comments)