X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/7774237a11f1f6b78e0b75a3c1d6a499f9feef45..68bb9b3b812a929ac7b281e4a49d772b6de747a7:/script/statistics diff --git a/script/statistics b/script/statistics index 2e60d630f..4ceb92cfc 100755 --- a/script/statistics +++ b/script/statistics @@ -16,7 +16,7 @@ puts "

OpenStreetMap stats report run at #{start_time.to_s}

" begin ActiveRecord::Base.transaction do - user_count = User.count(:conditions => "active = 1") + user_count = User.count(:conditions => { :status => ["active", "confirmed", "suspended"] }) tracepoint_count = Tracepoint.count() node_count = Node.count(:conditions => "visible = true") way_count = Way.count(:conditions => "visible = true")