##// END OF EJS Templates
Add tablename to siblings query (#24296)....
Jean-Philippe Lang -
r15576:25a376636511
parent child
Show More
@@ -61,7 +61,7 module Redmine
61 61
62 62 # Returns the siblings
63 63 def siblings
64 nested_set_scope.where(:parent_id => parent_id).where("id <> ?", id)
64 nested_set_scope.where(:parent_id => parent_id).where("#{self.class.table_name}.id <> ?", id)
65 65 end
66 66
67 67 # Returns the ancestors
General Comments 0
You need to be logged in to leave comments. Login now