- Fixed missing pager_display -> theme('pager').

4.4.x
Kjartan Mannes 2003-12-08 19:32:06 +00:00
parent 712a30b520
commit d8d2d69b82
2 changed files with 2 additions and 2 deletions

View File

@ -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, "");
}
}

View File

@ -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, "");
}
}