]> git.openstreetmap.org Git - rails.git/commitdiff
Fix statistics script to reflect changes to user model
authorTom Hughes <tom@compton.nu>
Fri, 7 May 2010 10:09:54 +0000 (11:09 +0100)
committerTom Hughes <tom@compton.nu>
Fri, 7 May 2010 10:09:54 +0000 (11:09 +0100)
script/statistics

index 2e60d630f885e79423388d0f99b6e12803c9b563..4ceb92cfcc470bf22b74cc25e43c274eda99cfc0 100755 (executable)
@@ -16,7 +16,7 @@ puts "<h2>OpenStreetMap stats report run at #{start_time.to_s}</h2>"
 
 begin
   ActiveRecord::Base.transaction do
 
 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")
     tracepoint_count = Tracepoint.count()
     node_count = Node.count(:conditions => "visible = true")
     way_count = Way.count(:conditions => "visible = true")