summaryrefslogtreecommitdiff
path: root/modules/taxonomy
diff options
context:
space:
mode:
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,
);
}