Skip to content
Snippets Groups Projects
Commit d8d2d69b authored by Kjartan Mannes's avatar Kjartan Mannes
Browse files

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

parent 712a30b5
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -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, "");
}
}
......
......@@ -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, "");
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment