diff options
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 5dbca8e60..1fdba9d0a 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1530,7 +1530,7 @@ function node_page() { 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)); + $output .= theme('pager', NULL, variable_get("default_nodes_main", 10)); print theme("page", $output, ""); } } |