Explorar el Código

Minor bugfix

tags/last-sinatra-version
Adrian Short hace 14 años
padre
commit
a0e00023b7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      app.rb

+ 1
- 1
app.rb Ver fichero

@@ -56,7 +56,7 @@ end

get '/results/sutton-council/2010-05-06/:slug' do
@ward = Ward.first(:slug => params[:slug])
@candidates = Councilcandidate.all(:ward => @ward, :order => [ :votes_2010.desc ])
@candidates = Councilcandidate.all(:ward_id => @ward.id, :order => [ :votes_2010.desc ])
@total_2010 = Councilcandidate.sum(:votes_2010, :ward_id => @ward.id)
haml :resultssuttoncouncil
end


Cargando…
Cancelar
Guardar