Patch #24296 ยป siblings.diff
| lib/redmine/nested_set/traversing.rb (working copy) | ||
|---|---|---|
| 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 |