From 68bb9b3b812a929ac7b281e4a49d772b6de747a7 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Fri, 7 May 2010 11:09:54 +0100 Subject: [PATCH] Fix statistics script to reflect changes to user model --- script/statistics | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- 2.43.2