fixed bug in 'rxml'

Esse commit está contido em:
Josemar Davi Luedke
2012-05-05 02:48:03 -03:00
commit da12370705
2 arquivos alterados com 1 adições e 0 exclusões
+1
Ver Arquivo
@@ -35,6 +35,7 @@ class StaticController < ApplicationController
@expiring = Project.includes(:user, :category).visible.expiring.not_home_page.not_expired.order('expires_at, created_at DESC').limit(3).all
@recent = Project.includes(:user, :category).visible.not_home_page.not_expiring.not_expired.where("projects.user_id <> 7329").order('created_at DESC').limit(3).all
@successful = Project.includes(:user, :category).visible.not_home_page.successful.order('expires_at DESC').limit(3).all
return render 'sitemap'
end
end