summaryrefslogtreecommitdiff
path: root/modules/poll/poll.module
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-08 07:36:53 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-08 07:36:53 +0000
commit85c680a1a0e4b0f48526a064eae94e4b77e0d303 (patch)
treeb14af72b13d663363ddd1606d4bd66fa8eba63f0 /modules/poll/poll.module
parent2d632d1a187e687eed1e3a6e732aeb97f3ceebdb (diff)
downloadbrdo-85c680a1a0e4b0f48526a064eae94e4b77e0d303.tar.gz
brdo-85c680a1a0e4b0f48526a064eae94e4b77e0d303.tar.bz2
#588148 by JohnAlbin, sun, and effulgentsia: Make theme_links() actually themable.
Diffstat (limited to 'modules/poll/poll.module')
-rw-r--r--modules/poll/poll.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/poll/poll.module b/modules/poll/poll.module
index 289d4b8ba..15eb9995d 100644
--- a/modules/poll/poll.module
+++ b/modules/poll/poll.module
@@ -819,7 +819,7 @@ function theme_poll_choices($variables) {
* @see theme_poll_results()
*/
function template_preprocess_poll_results(&$variables) {
- $variables['links'] = theme('links', array('links' => $variables['raw_links']));
+ $variables['links'] = theme('links__poll_results', array('links' => $variables['raw_links']));
if (isset($variables['vote']) && $variables['vote'] > -1 && user_access('cancel own vote')) {
$variables['cancel_form'] = drupal_render(drupal_get_form('poll_cancel_form', $variables['nid']));
}