From 3692eb3d5cd81a27592b007b5a0e786786adf794 Mon Sep 17 00:00:00 2001 From: catch Date: Wed, 14 Mar 2012 13:11:26 +0900 Subject: [PATCH] Issue #1315616 by amateescu: Follow up for adding a definition list for the poll results. --- core/modules/poll/poll.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/poll/poll.module b/core/modules/poll/poll.module index 8e6d1af4230..328f5eb4363 100644 --- a/core/modules/poll/poll.module +++ b/core/modules/poll/poll.module @@ -826,8 +826,8 @@ function poll_view_results($node, $view_mode, $block = FALSE) { $poll_results[] = array( '#theme' => 'meter', - '#prefix' => '
' . check_plain($choice['chtext']) . '
' . PHP_EOL . '
', - '#suffix' => '
' . PHP_EOL, + '#prefix' => '
' . check_plain($choice['chtext']) . "
\n" . '
', + '#suffix' => "
\n", '#display_value' => t('!percentage%', array('!percentage' => $percentage)) . $display_votes, '#min' => 0, '#max' => $total_votes,