From: ivan Date: Wed, 4 Aug 2010 01:30:58 +0000 (+0000) Subject: better serialization on debugging data, RT#7514 X-Git-Tag: freeside_1_9_5~85 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=44e07950608338840d5142319f518448e5def7d9 better serialization on debugging data, RT#7514 --- diff --git a/FS/FS/part_export/communigate_pro.pm b/FS/FS/part_export/communigate_pro.pm index 90e697705..2cad24467 100644 --- a/FS/FS/part_export/communigate_pro.pm +++ b/FS/FS/part_export/communigate_pro.pm @@ -830,7 +830,7 @@ sub _pretty { } elsif ( ref($value) eq 'HASH' ) { '{'. join(', ', map { my $v = $value->{$_}; - "$_:". ( ref($v) ? _pretty($v) : $_ ); + "$_:". ( ref($v) ? _pretty($v) : $v ); } keys %$value ). '}';