summaryrefslogtreecommitdiff
path: root/includes/pager.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/pager.inc')
-rw-r--r--includes/pager.inc5
1 files changed, 4 insertions, 1 deletions
diff --git a/includes/pager.inc b/includes/pager.inc
index df68cd47c..49c758ab1 100644
--- a/includes/pager.inc
+++ b/includes/pager.inc
@@ -420,7 +420,10 @@ function theme_pager($variables) {
'data' => $li_last,
);
}
- return '<h2 class="element-invisible">' . t('Pages') . '</h2>' . theme('item_list', array('items' => $items, 'title' => NULL, 'type' => 'ul', 'attributes' => array('class' => array('pager'))));
+ return '<h2 class="element-invisible">' . t('Pages') . '</h2>' . theme('item_list', array(
+ 'items' => $items,
+ 'attributes' => array('class' => array('pager')),
+ ));
}
}