summaryrefslogtreecommitdiff
path: root/modules/taxonomy
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-04-26 19:44:40 +0000
committerDries Buytaert <dries@buytaert.net>2009-04-26 19:44:40 +0000
commit7a6f73f49d0cdbb544ca1a8af36ed3502487456c (patch)
tree9b9765f522c72ada5179f57a7f556ae7402d72bb /modules/taxonomy
parentbda52632a5aa033d44151c224a39236b223c6b0e (diff)
downloadbrdo-7a6f73f49d0cdbb544ca1a8af36ed3502487456c.tar.gz
brdo-7a6f73f49d0cdbb544ca1a8af36ed3502487456c.tar.bz2
- Patch #330748 by stBorchert: remove from theme_pager*.
Diffstat (limited to 'modules/taxonomy')
-rw-r--r--modules/taxonomy/taxonomy.admin.inc2
-rw-r--r--modules/taxonomy/taxonomy.pages.inc2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc
index bdddea75d..5c5c4adb7 100644
--- a/modules/taxonomy/taxonomy.admin.inc
+++ b/modules/taxonomy/taxonomy.admin.inc
@@ -620,7 +620,7 @@ function theme_taxonomy_overview_terms($form) {
$header = array(t('Name'), t('Operations'));
$output = theme('table', $header, $rows, array('id' => 'taxonomy'));
$output .= drupal_render_children($form);
- $output .= theme('pager', NULL, $page_increment);
+ $output .= theme('pager', NULL);
return $output;
}
diff --git a/modules/taxonomy/taxonomy.pages.inc b/modules/taxonomy/taxonomy.pages.inc
index 57f1c6e74..65c81cbb1 100644
--- a/modules/taxonomy/taxonomy.pages.inc
+++ b/modules/taxonomy/taxonomy.pages.inc
@@ -67,7 +67,7 @@ function taxonomy_term_page($terms, $depth = 0, $op = 'page') {
$nodes = node_load_multiple($nids);
$build += node_build_multiple($nodes);
$build['pager'] = array(
- '#markup' => theme('pager', NULL, variable_get('default_nodes_main', 10)),
+ '#markup' => theme('pager', NULL),
'#weight' => 5,
);
}