fixes typo

This commit is contained in:
rgarcia
2016-11-19 14:03:10 +01:00
parent 724dac4df2
commit e12f183775
17 changed files with 67 additions and 67 deletions

View File

@@ -28,8 +28,8 @@ class ProposalsController < ApplicationController
def index_customization
discard_archived
load_retired
load_successfull_proposals
load_featured unless @proposal_successfull_exists
load_successful_proposals
load_featured unless @proposal_successful_exists
end
def vote
@@ -103,8 +103,8 @@ class ProposalsController < ApplicationController
end
end
def load_successfull_proposals
@proposal_successfull_exists = Proposal.successfull.exists?
def load_successful_proposals
@proposal_successful_exists = Proposal.successful.exists?
end
end