@page = (params[:page] || 1).to_i
@page_size = 20
+ @bbox = bbox
+
@edits = Changeset.find(:all,
:include => [:user, :changeset_tags],
:conditions => conditions,
# eliminate empty changesets (where the bbox has not been set)
# this should be applied to all changeset list displays
def conditions_nonempty()
- return ['min_lat IS NOT NULL']
+ return ['num_changes > 0']
end
end