Fixed type in hasrref iter - thanks abraxxa
Ash Berlin [Mon, 30 Oct 2006 14:49:27 +0000 (14:49 +0000)]
lib/DBIx/Class/Manual/Cookbook.pod

index ab58aaa..916b710 100644 (file)
@@ -1128,7 +1128,7 @@ C<inflate_result>:
 
   my $datahashref = $rs->next;
   foreach my $col (keys %$datahashref) {
-     if(!ref($datahashref->{$col}) {
+     if(!ref($datahashref->{$col})) {
         # It's a plain value
      }
      elsif(ref($datahashref->{$col} eq 'HASH')) {