-<% -%>
<div id="cand<%= @current_candidate.id %>">
- <li><%= @current_candidate.name -%>
+ <li><%=h @current_candidate.name -%>
<% if @show_details %>
(<%= link_to_remote "Hide Details",
:update => "cand#{@current_candidate.id}",
- :url => { :action => :lessinfo_candidate, :id => @current_candidate.id } %>)
+ :url => { :action => :lessinfo_candidate,
+ :id => @current_candidate.id } %>)
<br />
<blockquote>
- <%= h(@current_candidate.description) %>
+ <%=h (@current_candidate.description) %>
</blockquote>
<% else %>
(<%= link_to_remote "Show Details",
:update => "cand#{@current_candidate.id}",
:url => { :action => :moreinfo_candidate,
- :id => @current_candidate.id } %>)
+ :id => @current_candidate.id } %>)
<% end %>
</li>
</div>