[Jifty-commit] r6286 - Jifty-DBI/trunk/lib/Jifty/DBI

Jifty commits jifty-commit at lists.jifty.org
Mon Feb 2 21:58:38 EST 2009


Author: sunnavy
Date: Mon Feb  2 21:58:37 2009
New Revision: 6286

Modified:
   Jifty-DBI/trunk/lib/Jifty/DBI/Record.pm

Log:
when fetched is set, we need to set raw_values too

Modified: Jifty-DBI/trunk/lib/Jifty/DBI/Record.pm
==============================================================================
--- Jifty-DBI/trunk/lib/Jifty/DBI/Record.pm	(original)
+++ Jifty-DBI/trunk/lib/Jifty/DBI/Record.pm	Mon Feb  2 21:58:37 2009
@@ -1242,6 +1242,7 @@
         next unless exists $hashref->{ lc($col) };
         $self->{'fetched'}{$col} = 1;
         $self->{'values'}->{$col} = $hashref->{ lc($col) };
+        $self->{'raw_values'}->{$col} = $hashref->{ lc($col) };
     }
     if ( !$self->{'values'} && $sth->err ) {
         return ( 0, "Couldn't fetch row: " . $sth->err );


More information about the Jifty-commit mailing list