From: Marc Mims Date: Tue, 23 May 2006 18:17:16 +0000 (+0000) Subject: Just the column name, please. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8a2fdfe81f1f4ec828bd8762878f845f490ffe17;p=dbsrgits%2FDBIx-Class-Historic.git Just the column name, please. --- diff --git a/lib/DBIx/Class/ResultSet.pm b/lib/DBIx/Class/ResultSet.pm index 494bb56..8fc894d 100644 --- a/lib/DBIx/Class/ResultSet.pm +++ b/lib/DBIx/Class/ResultSet.pm @@ -923,7 +923,7 @@ sub _cond_for_update_delete { } else { $entry =~ /([^.]+)$/; - $hash{$entry} = $cond[++$i]; + $hash{$1} = $cond[++$i]; } push @{$cond->{-and}}, \%hash;