]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/segment.rb
- fixed map api call in version 0.4.
[rails.git] / app / models / segment.rb
index 774517e2cbc650b4157df2cc6b13f653bd601a48..a88bc9a5b62f47e6277366a37e89adfdf3379956 100644 (file)
@@ -8,8 +8,8 @@ class Segment < ActiveRecord::Base
   has_many :old_segments, :foreign_key => :id
   belongs_to :user
 
-  has_one :from_node, :class => 'Node', :foreign_key => 'node_a'
-  has_one :to_node, :class => 'Node', :foreign_key => 'node_b'
+  has_one :from_node, :class_name => 'Node', :foreign_key => 'node_a'
+  has_one :to_node, :class_name => 'Node', :foreign_key => 'node_b'
 
   def self.from_xml(xml, create=false)
     p = XML::Parser.new
@@ -104,7 +104,7 @@ class Segment < ActiveRecord::Base
   end
 
   def precondtions_ok?
-    return from_node and from_node.visible and to_node and to_node.visible
+    from_node and from_node.visible and to_node and to_node.visible
   end
 
 end