X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Felements%2Fsvc_export_status.html;h=4ce869e271dc7bb0a5f772481b8054130d5bb875;hb=2ffdb485e5534df3d89bcc12d4d02d485e9b28f5;hp=d96bb277d16beea4318e82eef7b3f32e1d1ec72e;hpb=fb4ab1073f0d15d660c6cdc4e07afebf68ef3924;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 %> +% } + % }