X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Felements%2Fsvc_export_status.html;h=4ce869e271dc7bb0a5f772481b8054130d5bb875;hb=c6d8896d882b684b1f3c7a2538a90358b27aaf89;hp=d96bb277d16beea4318e82eef7b3f32e1d1ec72e;hpb=36d4c11cb8adf66c982c6f4c75b95fa4e6addd0b;p=freeside.git diff --git a/httemplate/view/elements/svc_export_status.html b/httemplate/view/elements/svc_export_status.html index d96bb277d..4ce869e27 100644 --- a/httemplate/view/elements/svc_export_status.html +++ b/httemplate/view/elements/svc_export_status.html @@ -7,7 +7,15 @@ % foreach my $key ( sort {$a cmp $b} keys %$hashref ) { <% $key |h %> - <% $hashref->{$key} |h %> + +% if ( ref($hashref->{$key}) eq 'ARRAY' ) { +% foreach (@{ $hashref->{$key} }) { + <% $_ |h %>
+% } +% } else { + <% $hashref->{$key} |h %> +% } + % }