diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-11-13 23:00:53 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-11-13 23:00:53 +0000 |
commit | 6c85795aceb7f47846de1f1eee259eb848b02e7d (patch) | |
tree | 3b65cedc92b99cc72799d98b0cf6f253049f795a /modules/taxonomy/taxonomy.module | |
parent | 36bb57555c1be31a19db442db35befba3188633a (diff) | |
download | brdo-6c85795aceb7f47846de1f1eee259eb848b02e7d.tar.gz brdo-6c85795aceb7f47846de1f1eee259eb848b02e7d.tar.bz2 |
- Fixed theme problem.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 08b786105..f26b36d1d 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -685,7 +685,7 @@ function taxonomy_render_nodes($result) { while ($node = db_fetch_object($result)) { node_view(node_load(array("nid" => $node->nid, "type" => $node->type)), 1); } - print pager_display_default(NULL, variable_get("default_nodes_main", 10), 0); + print pager_display(NULL, variable_get("default_nodes_main", 10), 0); } function taxonomy_nodeapi($node, $op, $arg = 0) { |