Once again, use result_source->resultset->find instead of ->find.
Aran Deltac [Mon, 27 Mar 2006 22:33:28 +0000 (22:33 +0000)]
lib/DBIx/Class/Tree.pm
lib/DBIx/Class/Tree/AdjacencyList.pm

index b1d9b9f..d392843 100644 (file)
@@ -4,7 +4,7 @@ package DBIx::Class::Tree;
 use strict;
 use warnings;
 
-use vars qw($VERSION);
+use vars qw( $VERSION );
 use base qw( DBIx::Class );
 
 $VERSION = '0.01000';
index d1ef803..af8c26e 100644 (file)
@@ -91,7 +91,7 @@ sub parent {
         return 1;
     }
     else {
-        return $self->find( $self->get_column( $parent_column ) );
+        return $self->result_source->resultset->find( $self->get_column( $parent_column ) );
     }
 }
 
@@ -118,7 +118,7 @@ sub children {
 
   $parent->attach_child( $child );
 
-Sets (or moves) the child to the new parent.
+Sets the child to the new parent.
 
 =cut