diff --git a/app/logical/reports/contributors.rb b/app/logical/reports/contributors.rb index 3b2a8c7dc..1a8b69392 100644 --- a/app/logical/reports/contributors.rb +++ b/app/logical/reports/contributors.rb @@ -3,7 +3,7 @@ require 'statistics2' module Reports class Contributors < User def users - ::User.where("users.level >= ? and users.post_upload_count >= 250", ::User::Levels::CONTRIBUTOR).order("created_at desc").limit(50).map {|x| Reports::UserPromotions::User.new(x)} + ::User.where("users.level >= ? and users.post_upload_count >= 250", ::User::Levels::CONTRIBUTOR).order("created_at desc").map {|x| Reports::UserPromotions::User.new(x)} end end end diff --git a/app/views/reports/contributors.html.erb b/app/views/reports/contributors.html.erb index 191e8c644..ca95cb838 100644 --- a/app/views/reports/contributors.html.erb +++ b/app/views/reports/contributors.html.erb @@ -10,9 +10,6 @@