Added fix to avoid undef warnings in CDBICompat stringify
Matt S Trout [Tue, 8 Nov 2005 17:25:02 +0000 (17:25 +0000)]
Changes
lib/DBIx/Class.pm
lib/DBIx/Class/CDBICompat/Stringify.pm

diff --git a/Changes b/Changes
index 1d31a74..32d7482 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 Revision history for DBIx::Class
 
+0.03004
+        - Added an || '' to the CDBICompat stringify to avoid null warnings
        - Updated name section for manual pods
        
 0.03003 2005-11-03 17:00:00
index 0d2f400..b1b7249 100644 (file)
@@ -6,7 +6,7 @@ use warnings;
 use vars qw($VERSION);
 use base qw/DBIx::Class::Componentised/;
 
-$VERSION = '0.03003';
+$VERSION = '0.03004';
 
 
 1;
index 7a7ea7b..1a05b31 100644 (file)
@@ -15,7 +15,7 @@ sub stringify_self {
         my $self = shift;
         my @cols = $self->columns('Stringify');
         @cols = $self->primary_column unless @cols;
-        my $ret = join "/", map { $self->get_column($_) } @cols;
+        my $ret = join "/", map { $self->get_column($_) || '' } @cols;
         return $ret || ref $self;
 }