projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
4bbcc5e
)
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
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/Manual/Cookbook.pod
b/lib/DBIx/Class/Manual/Cookbook.pod
index
ab58aaa
..
916b710
100644
(file)
--- a/
lib/DBIx/Class/Manual/Cookbook.pod
+++ b/
lib/DBIx/Class/Manual/Cookbook.pod
@@
-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')) {