diff --git a/app/controllers/surveys_controller.rb b/app/controllers/surveys_controller.rb
index 87b0fd6..0e0b2e0 100644
--- a/app/controllers/surveys_controller.rb
+++ b/app/controllers/surveys_controller.rb
@@ -258,7 +258,7 @@ def vote
end
else
if params[:option].respond_to? :each
- voted_for = "
- " + params[:option].reject {|o| o.blank? }.join("
- ") + "
"
+ voted_for = " " + params[:option].reject {|o| o.blank? }.join(", ")
else
voted_for = params[:option]
end