Index: trunk/extensions/SecurePoll/includes/DetailsPage.php |
— | — | @@ -63,6 +63,9 @@ |
64 | 64 | $wgOut->addHTML( '<table class="TablePager">' ); |
65 | 65 | $props = SecurePoll_Voter::decodeProperties( $row->voter_properties ); |
66 | 66 | foreach ( $props as $name => $value ) { |
| 67 | + if ( is_array( $value ) ) { |
| 68 | + $value = implode( ', ', $value ); |
| 69 | + } |
67 | 70 | $wgOut->addHTML( |
68 | 71 | '<td class="securepoll-detail-header">' . |
69 | 72 | htmlspecialchars( $name ) . "</td>\n" . |