X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/be75a1504f3c9a49b6cbf4e83c35339f45390628..ff9f596cea152b43bdd3d0daf124eb59b459dada:/app/models/way.rb diff --git a/app/models/way.rb b/app/models/way.rb index 94a6fa754..eb4bf48f4 100644 --- a/app/models/way.rb +++ b/app/models/way.rb @@ -51,7 +51,7 @@ class Way < ActiveRecord::Base # This next section isn't required for the create, update, or delete of ways if create - way.timestamp = Time.now + way.timestamp = Time.now.getutc way.visible = true else if pt['timestamp'] @@ -224,7 +224,7 @@ class Way < ActiveRecord::Base def preconditions_ok? return false if self.nds.empty? if self.nds.length > APP_CONFIG['max_number_of_way_nodes'] - raise OSM::APITooManyWayNodesError.new(self.nds.count, APP_CONFIG['max_number_of_way_nodes']) + raise OSM::APITooManyWayNodesError.new(self.nds.length, APP_CONFIG['max_number_of_way_nodes']) end self.nds.each do |n| node = Node.find(:first, :conditions => ["id = ?", n]) @@ -246,7 +246,7 @@ class Way < ActiveRecord::Base Way.transaction do check_consistency(self, new_way, user) if RelationMember.find(:first, :joins => "INNER JOIN current_relations ON current_relations.id=current_relation_members.id", - :conditions => [ "visible = ? AND member_type='way' and member_id=? ", true, self.id]) + :conditions => [ "visible = ? AND member_type='Way' and member_id=? ", true, self.id]) raise OSM::APIPreconditionFailedError.new("You need to make sure that this way is not a member of a relation.") else self.changeset_id = new_way.changeset_id @@ -296,7 +296,7 @@ class Way < ActiveRecord::Base private def save_with_history! - t = Time.now + t = Time.now.getutc # update the bounding box, note that this has to be done both before # and after the save, so that nodes from both versions are included in the