Skip to content
Snippets Groups Projects
Commit 7c3d3b4e authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2177673 by InternetDevels | jessebeach: Replace theme() with...

Issue #2177673 by InternetDevels | jessebeach: Replace theme() with drupal_render() in Drupal/search_extra_type/Plugin/Search/SearchExtraTypeSearch.php.
parent 1c0a852a
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
......@@ -77,7 +77,10 @@ public function buildResults() {
'#plugin_id' => 'search_extra_type_search',
);
}
$output['suffix']['#markup'] = '</ol>' . theme('pager');
$pager = array(
'#theme' => 'pager',
);
$output['suffix']['#markup'] = '</ol>' . drupal_render($pager);
return $output;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment