summaryrefslogtreecommitdiff
path: root/modules/taxonomy
diff options
context:
space:
mode:
Diffstat (limited to 'modules/taxonomy')
-rw-r--r--modules/taxonomy/taxonomy.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index 6274798b1..dd31cc688 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -688,7 +688,7 @@ function taxonomy_render_nodes($result) {
while ($node = db_fetch_object($result)) {
$output .= node_view(node_load(array("nid" => $node->nid, "type" => $node->type)), 1);
}
- $output .= pager_display(NULL, variable_get("default_nodes_main", 10), 0);
+ $output .= theme("pager", NULL, variable_get("default_nodes_main", 10), 0);
return $output;
}