diff options
Diffstat (limited to 'modules/taxonomy.module')
-rw-r--r-- | modules/taxonomy.module | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module index ca59cae25..f56b55ac1 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -686,7 +686,7 @@ function taxonomy_select_nodes($taxonomy, $pager = 1) { function taxonomy_render_nodes($result) { while ($node = db_fetch_object($result)) { - node_view(node_load(array("nid" => $node->nid, "type" => $node->type)), 1); + print node_view(node_load(array("nid" => $node->nid, "type" => $node->type)), 1); } print pager_display(NULL, variable_get("default_nodes_main", 10), 0); } @@ -795,9 +795,7 @@ function taxonomy_admin() { $output .= message_access(); } - print theme("header"); - print $output; - print theme("footer"); + print theme("page", $output); } function taxonomy_help($section = "admin/help#taxonomy") { |