diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2003-12-08 19:32:06 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2003-12-08 19:32:06 +0000 |
commit | d8d2d69b827cdaddb32c2f103c22038ca67c5160 (patch) | |
tree | 5fb52471fba8945e60c7b565558466074c20dd85 | |
parent | 712a30b520c67ddc71c3f5a7b0a33ea3ae7b57b7 (diff) | |
download | brdo-d8d2d69b827cdaddb32c2f103c22038ca67c5160.tar.gz brdo-d8d2d69b827cdaddb32c2f103c22038ca67c5160.tar.bz2 |
- Fixed missing pager_display -> theme('pager').
-rw-r--r-- | modules/node.module | 2 | ||||
-rw-r--r-- | modules/node/node.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/node.module b/modules/node.module index 5dbca8e60..1fdba9d0a 100644 --- a/modules/node.module +++ b/modules/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, ""); } } 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, ""); } } |